結果

問題 No.32 貯金箱の憂鬱
ユーザー nekoneko
提出日時 2019-10-08 21:26:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 1,078 ms
コンパイル使用メモリ 10,556 KB
実行使用メモリ 8,000 KB
最終ジャッジ日時 2023-09-30 13:42:03
合計ジャッジ時間 1,071 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,832 KB
testcase_01 AC 16 ms
7,896 KB
testcase_02 AC 16 ms
8,000 KB
testcase_03 AC 16 ms
7,820 KB
testcase_04 AC 15 ms
7,836 KB
testcase_05 AC 16 ms
7,820 KB
testcase_06 AC 15 ms
7,916 KB
testcase_07 AC 15 ms
7,816 KB
testcase_08 AC 15 ms
7,868 KB
testcase_09 AC 16 ms
7,876 KB
testcase_10 AC 15 ms
7,780 KB
testcase_11 AC 15 ms
7,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

list_input=[int(input()) for i in range(3)]

total=list_input[0]*100+list_input[1]*25+list_input[2]*1
amari1000=total%1000
t100=amari1000//100
amari100=amari1000%100
t25=amari100//25
t1=amari100%25

total_all=t100+t25+t1
print(total_all)
0