結果

問題 No.604 誕生日のお小遣い
ユーザー tails1434tails1434
提出日時 2020-02-14 07:42:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 64,168 KB
最終ジャッジ日時 2024-10-06 07:36:44
合計ジャッジ時間 3,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,124 KB
testcase_02 AC 38 ms
52,744 KB
testcase_03 AC 38 ms
52,868 KB
testcase_04 AC 37 ms
53,488 KB
testcase_05 AC 37 ms
52,476 KB
testcase_06 AC 36 ms
52,400 KB
testcase_07 AC 37 ms
52,272 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,868 KB
testcase_11 AC 41 ms
57,212 KB
testcase_12 AC 38 ms
57,208 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    A, B, C = map(int, input().split())
    money = 0
    age = 0
    while money < C:
        age += A
        money += B + (A - 1) * 1
    
    if money == C:
        print(age)
    else:
        money -= B
        age -= 1
        age -= money - C
        print(age)


if __name__ == "__main__":
    main()
0