結果
問題 | No.128 お年玉(1) |
ユーザー | dazy |
提出日時 | 2016-09-13 17:47:45 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 304 bytes |
コンパイル時間 | 2,829 ms |
コンパイル使用メモリ | 74,452 KB |
実行使用メモリ | 41,600 KB |
最終ジャッジ日時 | 2024-10-01 10:25:17 |
合計ジャッジ時間 | 6,449 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 97 ms
40,028 KB |
testcase_01 | AC | 111 ms
41,600 KB |
testcase_02 | AC | 106 ms
41,196 KB |
testcase_03 | WA | - |
testcase_04 | AC | 99 ms
40,116 KB |
testcase_05 | AC | 125 ms
41,424 KB |
testcase_06 | AC | 112 ms
41,056 KB |
testcase_07 | AC | 109 ms
41,188 KB |
testcase_08 | AC | 107 ms
41,464 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import java.util.*; public class Run { public static void main (String arg[]) { Scanner scan = new Scanner(System.in); long N = scan.nextLong(); int M = scan.nextInt(); int ans = ((int) (N / (M * 1000))); ans *= 1000; System.out.println(ans); } }