結果
| 問題 | No.32 貯金箱の憂鬱 |
| コンテスト | |
| ユーザー |
econo_coffee
|
| 提出日時 | 2017-03-23 18:24:51 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 59 ms / 5,000 ms |
| + 868µs | |
| コード長 | 336 bytes |
| 記録 | |
| コンパイル時間 | 2,961 ms |
| コンパイル使用メモリ | 84,304 KB |
| 実行使用メモリ | 43,228 KB |
| 最終ジャッジ日時 | 2026-08-23 18:28:17 |
| 合計ジャッジ時間 | 4,330 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
import java.util.Scanner;
public class Yukicoder {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int L =sc.nextInt();
int M =sc.nextInt();
int N =sc.nextInt();
int sum = 0;
M += N / 25;
sum += N % 25;
L += M / 4;
sum += M % 4;
sum += L % 10;
System.out.println(sum);
}
}
econo_coffee