結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー |
|
提出日時 | 2020-07-02 17:50:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 113 bytes |
コンパイル時間 | 131 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-15 01:08:29 |
合計ジャッジ時間 | 1,014 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 11 |
ソースコード
m=int(input())*100+int(input())*25+int(input()) ans=m//1000 m%=1000 ans+=m//100 m%=100 ans+=m//25+m%25 print(ans)