結果

問題 No.604 誕生日のお小遣い
ユーザー haya_walkerhaya_walker
提出日時 2017-12-30 18:13:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,988 KB
最終ジャッジ日時 2024-06-01 08:43:50
合計ジャッジ時間 7,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 129 ms
24,788 KB
testcase_02 AC 128 ms
24,788 KB
testcase_03 AC 129 ms
24,704 KB
testcase_04 AC 129 ms
24,788 KB
testcase_05 AC 128 ms
24,656 KB
testcase_06 AC 128 ms
24,704 KB
testcase_07 AC 128 ms
24,784 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 144 ms
24,660 KB
testcase_12 AC 128 ms
24,788 KB
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from pip._vendor.distlib.compat import raw_input

N = str(raw_input()).split(sep=" ")

A = int(N[0])
B = int(N[1])
C = int(N[2])
i = 0

while True:
    if A+B <= C:
        C -= A+B-1
        i += A
    else:
        i += C
        print(i)
        break
0