結果
| 問題 | No.604 誕生日のお小遣い |
| コンテスト | |
| ユーザー |
1up_aloe
|
| 提出日時 | 2017-12-08 11:17:58 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 416 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,232 KB |
| 最終ジャッジ日時 | 2026-05-23 12:30:21 |
| 合計ジャッジ時間 | 4,108 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 WA * 12 |
ソースコード
time,price,target = list(map(int,input().split())) cycle = (time-1)+price cut = target//cycle Ttage = target % cycle day = cut*time + Ttage print (day)
1up_aloe