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