結果

問題 No.32 貯金箱の憂鬱
ユーザー MichirakaraMichirakara
提出日時 2022-11-28 02:33:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 93 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 53,508 KB
最終ジャッジ日時 2024-04-15 06:20:11
合計ジャッジ時間 1,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,688 KB
testcase_01 AC 36 ms
53,068 KB
testcase_02 AC 35 ms
52,328 KB
testcase_03 AC 37 ms
52,216 KB
testcase_04 AC 39 ms
52,456 KB
testcase_05 AC 37 ms
53,508 KB
testcase_06 AC 36 ms
52,156 KB
testcase_07 AC 35 ms
53,044 KB
testcase_08 AC 35 ms
52,412 KB
testcase_09 AC 35 ms
53,360 KB
testcase_10 AC 35 ms
52,224 KB
testcase_11 AC 35 ms
52,084 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