結果

問題 No.32 貯金箱の憂鬱
ユーザー Shinichiro OnzukaShinichiro Onzuka
提出日時 2020-09-11 16:43:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 54,052 KB
最終ジャッジ日時 2024-06-07 19:39:49
合計ジャッジ時間 1,837 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,328 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 37 ms
51,712 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