結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | mobius_bkst |
提出日時 | 2015-06-26 23:06:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 79 ms / 1,000 ms |
コード長 | 1,399 bytes |
コンパイル時間 | 3,483 ms |
コンパイル使用メモリ | 77,180 KB |
実行使用メモリ | 37,944 KB |
最終ジャッジ日時 | 2024-11-07 23:34:03 |
合計ジャッジ時間 | 5,230 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
37,808 KB |
testcase_01 | AC | 53 ms
36,928 KB |
testcase_02 | AC | 53 ms
37,124 KB |
testcase_03 | AC | 76 ms
37,692 KB |
testcase_04 | AC | 76 ms
37,588 KB |
testcase_05 | AC | 59 ms
37,216 KB |
testcase_06 | AC | 78 ms
37,944 KB |
testcase_07 | AC | 55 ms
37,092 KB |
testcase_08 | AC | 58 ms
37,092 KB |
testcase_09 | AC | 49 ms
36,568 KB |
testcase_10 | AC | 50 ms
36,820 KB |
testcase_11 | AC | 49 ms
36,640 KB |
testcase_12 | AC | 68 ms
37,904 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class No231 { private static final int LEVELUP = 30000 * 100; public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new InputStreamReader( System.in)); int N = Integer.parseInt(br.readLine()); int max = 0; int key = -1; for (int i = 0; i < N; i++) { int[] a = strToIntArray(br.readLine()); int value = a[0] - 30000 * a[1]; max = Math.max(max, value); if (max == value) { key = i + 1; } } if (LEVELUP <= max * 6) { System.out.println("YES"); for (int i = 0; i < 6; i++) { System.out.println(key); } } else { System.out.println("NO"); } } catch (Exception e) { e.printStackTrace(); System.err.println("Error:" + e.getMessage()); } } static int[] strToIntArray(String S) { String[] strArray = S.split(" "); int[] intArray = new int[strArray.length]; for (int i = 0; i < strArray.length; i++) { intArray[i] = Integer.parseInt(strArray[i]); } return intArray; } }