結果

問題 No.604 誕生日のお小遣い
ユーザー rokey1023rokey1023
提出日時 2017-12-07 09:54:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 183 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-11-29 04:49:22
合計ジャッジ時間 16,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
20,864 KB
testcase_02 AC 30 ms
15,744 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 30 ms
17,444 KB
testcase_06 AC 30 ms
15,872 KB
testcase_07 WA -
testcase_08 AC 30 ms
15,616 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, z = map(int, input().split())
i = 0
sum = 0
while(sum <= z):
    if(i % x == 0):
        sum += y
        i += 1
    else:
        sum += 1
        i += 1

print(i)
0