結果

問題 No.32 貯金箱の憂鬱
ユーザー MichirakaraMichirakara
提出日時 2022-11-28 02:33:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 93 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 52,936 KB
最終ジャッジ日時 2024-10-04 19:49:18
合計ジャッジ時間 1,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,572 KB
testcase_01 AC 30 ms
52,480 KB
testcase_02 AC 31 ms
52,436 KB
testcase_03 AC 34 ms
52,240 KB
testcase_04 AC 32 ms
51,420 KB
testcase_05 AC 31 ms
52,356 KB
testcase_06 AC 30 ms
52,936 KB
testcase_07 AC 31 ms
52,852 KB
testcase_08 AC 31 ms
51,880 KB
testcase_09 AC 31 ms
52,696 KB
testcase_10 AC 34 ms
51,956 KB
testcase_11 AC 31 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,m,n=map(int,open(0))
a=l*100+m*25+n
a=a%1000
c=a//100
a=a%100
c+=a//25
a=a%25
c+=a
print(c)
0