結果

問題 No.32 貯金箱の憂鬱
ユーザー deepjugglingdeepjuggling
提出日時 2023-06-11 22:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 116 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 87,296 KB
実行使用メモリ 71,664 KB
最終ジャッジ日時 2023-08-31 02:06:43
合計ジャッジ時間 2,216 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
71,552 KB
testcase_01 AC 60 ms
71,620 KB
testcase_02 AC 58 ms
71,436 KB
testcase_03 AC 59 ms
71,316 KB
testcase_04 AC 61 ms
71,172 KB
testcase_05 AC 58 ms
71,236 KB
testcase_06 AC 60 ms
71,364 KB
testcase_07 AC 58 ms
71,356 KB
testcase_08 AC 59 ms
71,596 KB
testcase_09 AC 61 ms
71,428 KB
testcase_10 AC 59 ms
71,600 KB
testcase_11 AC 60 ms
71,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
b = int(input())
c = int(input())
ans = c%25
b += c//25
ans += b%4
a += b//4
ans += a%10
print(ans)
0