結果

問題 No.32 貯金箱の憂鬱
ユーザー gamuogamo5gamuogamo5
提出日時 2016-08-30 13:08:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 53,452 KB
最終ジャッジ日時 2024-07-23 02:23:10
合計ジャッジ時間 1,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,756 KB
testcase_01 AC 37 ms
52,120 KB
testcase_02 AC 36 ms
52,132 KB
testcase_03 AC 36 ms
53,228 KB
testcase_04 AC 36 ms
52,944 KB
testcase_05 AC 36 ms
51,824 KB
testcase_06 AC 36 ms
53,452 KB
testcase_07 AC 37 ms
52,520 KB
testcase_08 AC 36 ms
53,412 KB
testcase_09 AC 35 ms
52,072 KB
testcase_10 AC 37 ms
53,164 KB
testcase_11 AC 36 ms
52,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
b=int(input())
c=int(input())

if c>=25:
    b+=c//25
    c=c%25
if b>=4:
    a+=b//4
    b=b%4
if a>=10:
    a=a%10
sum=a+b+c
print(sum)
0