結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | spacia |
提出日時 | 2016-01-04 08:34:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 727 bytes |
コンパイル時間 | 1,858 ms |
コンパイル使用メモリ | 74,672 KB |
実行使用メモリ | 53,216 KB |
最終ジャッジ日時 | 2024-09-19 11:06:52 |
合計ジャッジ時間 | 4,565 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 54 ms
37,096 KB |
testcase_02 | AC | 52 ms
37,160 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 57 ms
36,696 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 47 ms
36,816 KB |
testcase_12 | WA | - |
ソースコード
import java.io.*; import java.util.*; import java.math.*; class Main { public static void out (Object o) { System.out.println(o); } public static void main (String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); int maxExp = -1 , maxId = -1; for (int i = 0; i < n; i++) { String[] line = br.readLine().split(" "); int g = Integer.parseInt(line[0]); int d = Integer.parseInt(line[1]); int exp = g - d * 30000; if (exp > maxExp) { maxExp = exp; maxId = i + 1; } } if (maxExp * 6 >= 3000000) { for (int i = 0; i < 6; i++) out(maxId); } else { out("NO"); } } }