結果

問題 No.32 貯金箱の憂鬱
ユーザー MichirakaraMichirakara
提出日時 2022-11-28 02:33:44
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 93 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 86,780 KB
実行使用メモリ 71,256 KB
最終ジャッジ日時 2023-07-27 19:32:16
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,096 KB
testcase_01 AC 76 ms
71,096 KB
testcase_02 AC 74 ms
71,108 KB
testcase_03 AC 74 ms
71,256 KB
testcase_04 AC 72 ms
70,988 KB
testcase_05 AC 73 ms
71,188 KB
testcase_06 AC 72 ms
71,232 KB
testcase_07 AC 72 ms
71,208 KB
testcase_08 AC 72 ms
71,100 KB
testcase_09 AC 72 ms
71,048 KB
testcase_10 AC 73 ms
71,200 KB
testcase_11 AC 73 ms
71,248 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