結果

問題 No.604 誕生日のお小遣い
ユーザー nouka28nouka28
提出日時 2023-01-01 16:02:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 1,212 ms
コンパイル使用メモリ 81,592 KB
実行使用メモリ 53,520 KB
最終ジャッジ日時 2024-11-27 00:06:35
合計ジャッジ時間 2,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,864 KB
testcase_02 AC 36 ms
51,940 KB
testcase_03 AC 35 ms
52,112 KB
testcase_04 AC 35 ms
52,164 KB
testcase_05 AC 34 ms
53,520 KB
testcase_06 AC 33 ms
51,984 KB
testcase_07 AC 35 ms
52,076 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 36 ms
51,856 KB
testcase_11 AC 36 ms
51,880 KB
testcase_12 AC 37 ms
51,824 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
52,696 KB
testcase_16 WA -
testcase_17 AC 35 ms
52,432 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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