結果

問題 No.32 貯金箱の憂鬱
ユーザー gorugo30gorugo30
提出日時 2021-02-22 21:14:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 135 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-09-21 16:50:28
合計ジャッジ時間 1,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
M = int(input())
N = int(input())
ans = 0
M += N // 25
ans += N % 25
L += M // 4
ans += M % 4
ans += L % 10
print(ans)
0