結果

問題 No.32 貯金箱の憂鬱
ユーザー ktayaktaya
提出日時 2019-01-03 22:43:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-05-03 02:35:13
合計ジャッジ時間 1,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
51,712 KB
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def calc(a, b, c):
	q1, mod1 = divmod(a, 25)
	b += q1

	q2, mod2 = divmod(b, 4)

	c += q2
	q3, mod3 = divmod(c, 10)

	return mod1 + mod2 + mod3
	
print(calc(a, b, c))
0