結果

問題 No.32 貯金箱の憂鬱
ユーザー 川端太作川端太作
提出日時 2022-12-25 17:15:10
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 1,360 ms
コンパイル使用メモリ 29,952 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 22:12:24
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program T01
	implicit none
	integer::a,b,c
	read(*,*)a !100円硬貨
	read(*,*)b !25円硬貨
	read(*,*)c !1円硬貨
		if(c>=25)then
			b=b+int(c/25)
			c=mod(c,25)
		end if
		if(b>=4)then
			a=a+int(b/4)
			b=mod(b,4)
		end if
		if(a>=10)then
			a=mod(a,10)
		end if
	write(*,*)a+b+c
end program T01
0