結果
| 問題 | No.3295 Buying Bottled Water |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-04-01 18:21:24 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 92 bytes |
| 記録 | |
| コンパイル時間 | 950 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 41,264 KB |
| 最終ジャッジ日時 | 2026-04-01 18:21:40 |
| 合計ジャッジ時間 | 6,633 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 19 |
ソースコード
n = input() x = n//500 if n - 500*x <100: print(x) else: print(x+1) # TODO: write code...