結果

問題 No.32 貯金箱の憂鬱
ユーザー yuki2006yuki2006
提出日時 2014-09-30 19:28:21
言語 Python2
(2.7.18)
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 143 bytes
コンパイル時間 955 ms
コンパイル使用メモリ 6,612 KB
実行使用メモリ 6,632 KB
最終ジャッジ日時 2023-09-30 07:43:09
合計ジャッジ時間 1,252 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,564 KB
testcase_01 AC 15 ms
6,576 KB
testcase_02 AC 15 ms
6,584 KB
testcase_03 AC 14 ms
6,632 KB
testcase_04 AC 15 ms
6,580 KB
testcase_05 AC 15 ms
6,428 KB
testcase_06 AC 14 ms
6,520 KB
testcase_07 AC 14 ms
6,612 KB
testcase_08 AC 15 ms
6,548 KB
testcase_09 AC 14 ms
6,576 KB
testcase_10 AC 14 ms
6,552 KB
testcase_11 AC 15 ms
6,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Queue

L = int(raw_input())
M = int(raw_input())
N = int(raw_input())

M += N // 25
N %= 25

L += M // 4
M %= 4

L %= 10
print L + M + N
0