結果
| 問題 |
No.604 誕生日のお小遣い
|
| コンテスト | |
| ユーザー |
kwnwsdnc
|
| 提出日時 | 2018-02-24 23:22:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 189 bytes |
| コンパイル時間 | 113 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 16,000 KB |
| 最終ジャッジ日時 | 2024-11-06 14:11:35 |
| 合計ジャッジ時間 | 2,879 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 TLE * 1 |
| other | WA * 1 -- * 20 |
ソースコード
ln=list(map(int,input().split()))
A=ln[0]
B=ln[1]
C=ln[2]
age=0
total=0
age+=1
total+=1
while total<C:
if age%A==0:
total+=B
else:
total+=1
age+=1
print(age)
kwnwsdnc