結果

問題 No.32 貯金箱の憂鬱
ユーザー Shinichiro OnzukaShinichiro Onzuka
提出日時 2020-09-11 16:43:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 87,044 KB
実行使用メモリ 71,580 KB
最終ジャッジ日時 2023-08-27 00:17:36
合計ジャッジ時間 2,324 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,128 KB
testcase_01 AC 69 ms
71,200 KB
testcase_02 AC 69 ms
71,260 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 68 ms
71,200 KB
testcase_07 AC 68 ms
71,212 KB
testcase_08 WA -
testcase_09 AC 70 ms
71,228 KB
testcase_10 AC 68 ms
70,772 KB
testcase_11 AC 70 ms
70,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力を受ける
hundred = int(input())
quarter = int(input())
one = int(input())

quarter = quarter + one/25
one = one%25
hundred = hundred + quarter/4
quarter = quarter%4
hundred = hundred%10
print(int(one + quarter + hundred))
0