結果
問題 | No.128 お年玉(1) |
ユーザー | ちよちゃん |
提出日時 | 2016-05-11 14:27:31 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 317 bytes |
コンパイル時間 | 3,094 ms |
コンパイル使用メモリ | 73,968 KB |
実行使用メモリ | 54,520 KB |
最終ジャッジ日時 | 2024-10-01 10:17:30 |
合計ジャッジ時間 | 6,907 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
53,820 KB |
testcase_01 | AC | 124 ms
53,924 KB |
testcase_02 | AC | 111 ms
52,956 KB |
testcase_03 | RE | - |
testcase_04 | AC | 126 ms
53,904 KB |
testcase_05 | AC | 128 ms
53,692 KB |
testcase_06 | AC | 128 ms
53,872 KB |
testcase_07 | AC | 128 ms
53,636 KB |
testcase_08 | AC | 136 ms
54,216 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
ソースコード
package yukicoder; import java.util.Scanner; public class Yuki11 { public static void main(String[] args) { final int thousand = 1000; Scanner scan = new Scanner(System.in); int n = scan.nextInt(); int m = scan.nextInt(); scan.close(); System.out.println(thousand*(n/(m*thousand))); } }