Beginner Free Contest 52 - NTFS

View as PDF

Submit solution

Points: 0.08 (partial)
Time limit: 1.0s
Memory limit: 512M

Problem type
Allowed languages
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch

In case the statement didn't load correctly, you can download the statement here: Statement

Lưu ý: các bạn không nhập, xuất dữ liệu bằng file kể cả khi đề bài có yêu cầu. Đọc, ghi dữ liệu được thực hiện ở stdin và stdout.


Comments

Please read the guidelines before commenting.



  • 1
    k30hongvuong  commented on Dec. 9, 2025, 2:10 a.m.

    tham du tinh than

    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n ; cin >> n ;
    int res = n / (4*1024);
    if(n % (4*1024) != 0)res++;
    cout << res  * 4 ;
    return 0;
    

  • -8
    Groot  commented on May 20, 2024, 5:23 p.m.

    This comment is hidden due to too much negative feedback. Show it anyway.