結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | miztom |
提出日時 | 2024-03-12 16:59:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 97 bytes |
コンパイル時間 | 133 ms |
コンパイル使用メモリ | 82,416 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-09-29 22:22:17 |
合計ジャッジ時間 | 1,180 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
s=int(input())*100 s+=int(input())*25 s+=int(input()) s%=1000 r=s//100 r+=s%100//25 print(r+s%25)