結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-30 17:47:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,109 bytes |
コンパイル時間 | 2,182 ms |
コンパイル使用メモリ | 77,996 KB |
実行使用メモリ | 51,216 KB |
最終ジャッジ日時 | 2024-09-13 23:51:24 |
合計ジャッジ時間 | 5,223 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 71 ms
50,428 KB |
testcase_04 | AC | 86 ms
50,748 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 54 ms
50,088 KB |
testcase_10 | AC | 53 ms
50,192 KB |
testcase_11 | AC | 56 ms
50,268 KB |
testcase_12 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); int N = Integer.parseInt(reader.readLine()); long REQUIRED_XP = 3000000; String[] inputs; long[] xps = new long[N]; for (int i = 0; i < N; i++) { inputs = reader.readLine().split(" "); long xp = Long.parseLong(inputs[0]); int death = Integer.parseInt(inputs[1]); xps[i] = xp * 6 - 30000 * death; } int dangeon = -1; for (int i = 0; i < N; i++) { if(REQUIRED_XP <= xps[i]) { dangeon = i; break; } } if(dangeon!=-1){ System.out.println("YES"); for (int i = 0; i < 6; i++) { System.out.println(dangeon+1); } } else { System.out.println("NO"); } } }