結果
問題 |
No.3295 Buying Bottled Water
|
ユーザー |
|
提出日時 | 2025-10-05 13:35:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 84 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 53,944 KB |
最終ジャッジ日時 | 2025-10-05 13:37:06 |
合計ジャッジ時間 | 1,845 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 WA * 4 |
ソースコード
n = int(input()) if n <= 100: print(1) else: print((n - 100 + 499) // 500)