結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | mits58 |
提出日時 | 2016-05-05 14:04:50 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 135 ms / 5,000 ms |
コード長 | 425 bytes |
コンパイル時間 | 2,246 ms |
コンパイル使用メモリ | 74,756 KB |
実行使用メモリ | 41,612 KB |
最終ジャッジ日時 | 2024-07-23 02:19:01 |
合計ジャッジ時間 | 4,764 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int l=sc.nextInt(); int m=sc.nextInt(); int n=sc.nextInt(); int sum=l*100+m*25+n; sum%=1000; l=sum/100; m=(sum%100)/25; n=sum-l*100-m*25; System.out.println(l+m+n); } } }