結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | Co-3 |
提出日時 | 2020-12-11 19:59:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 34 ms / 5,000 ms |
コード長 | 181 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-19 21:28:14 |
合計ジャッジ時間 | 1,099 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
a = int(input()) b = int(input()) c = int(input()) d = 0 while c >= 25: b += 1 c -= 25 while b >= 4: a += 1 b -= 4 while a >= 10: d += 1 a -= 10 print(a+b+c)