結果

問題 No.604 誕生日のお小遣い
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 19:36:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 1,000 ms
コード長 127 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,580 KB
最終ジャッジ日時 2024-11-27 16:06:05
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,364 KB
testcase_01 AC 33 ms
52,376 KB
testcase_02 AC 33 ms
53,240 KB
testcase_03 AC 33 ms
52,764 KB
testcase_04 AC 32 ms
53,132 KB
testcase_05 AC 33 ms
52,688 KB
testcase_06 AC 33 ms
51,952 KB
testcase_07 AC 33 ms
52,428 KB
testcase_08 AC 32 ms
53,580 KB
testcase_09 AC 32 ms
51,496 KB
testcase_10 AC 33 ms
51,684 KB
testcase_11 AC 33 ms
53,176 KB
testcase_12 AC 34 ms
52,704 KB
testcase_13 AC 33 ms
52,060 KB
testcase_14 AC 34 ms
51,688 KB
testcase_15 AC 34 ms
53,120 KB
testcase_16 AC 35 ms
52,088 KB
testcase_17 AC 33 ms
52,748 KB
testcase_18 AC 31 ms
52,844 KB
testcase_19 AC 32 ms
51,824 KB
testcase_20 AC 33 ms
53,208 KB
testcase_21 AC 32 ms
52,104 KB
testcase_22 AC 34 ms
52,788 KB
testcase_23 AC 33 ms
51,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())

d = (A-1) + B
u, v = divmod(C, d)

if v > A-1:
    print((u+1)*A)
else:
    print(u*A + v)
0