結果

問題 No.604 誕生日のお小遣い
ユーザー nouka28nouka28
提出日時 2023-01-01 16:08:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-11-27 00:07:30
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,128 KB
testcase_01 AC 37 ms
52,728 KB
testcase_02 AC 36 ms
53,116 KB
testcase_03 AC 37 ms
52,924 KB
testcase_04 AC 37 ms
52,444 KB
testcase_05 AC 37 ms
52,036 KB
testcase_06 AC 36 ms
51,748 KB
testcase_07 AC 37 ms
51,964 KB
testcase_08 AC 36 ms
52,036 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,088 KB
testcase_11 AC 37 ms
51,672 KB
testcase_12 AC 36 ms
53,160 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
52,456 KB
testcase_16 AC 36 ms
52,188 KB
testcase_17 AC 36 ms
53,044 KB
testcase_18 AC 35 ms
52,944 KB
testcase_19 AC 36 ms
52,616 KB
testcase_20 AC 35 ms
51,824 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c=map(int,input().split())
t=b+a-1
temp=c//t
if temp==0:
    if a-1<c:
        print(a)
    else:
        print(c)
else:
    mod=c%t
    print(temp*a+mod)
0