結果

問題 No.231 めぐるはめぐる (1)
ユーザー yagi2yagi2
提出日時 2017-04-21 11:12:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 1,000 ms
コード長 581 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 43,256 KB
最終ジャッジ日時 2024-07-20 05:00:39
合計ジャッジ時間 4,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
43,256 KB
testcase_01 AC 145 ms
41,740 KB
testcase_02 AC 140 ms
41,556 KB
testcase_03 AC 126 ms
41,500 KB
testcase_04 AC 127 ms
41,352 KB
testcase_05 AC 169 ms
42,068 KB
testcase_06 AC 111 ms
40,220 KB
testcase_07 AC 142 ms
41,340 KB
testcase_08 AC 150 ms
41,292 KB
testcase_09 AC 113 ms
40,644 KB
testcase_10 AC 129 ms
41,404 KB
testcase_11 AC 123 ms
40,976 KB
testcase_12 AC 134 ms
41,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int D = Integer.parseInt(sc.next());

        boolean f = false;
        for (int i = 1; i <= D; i++) {
            if (sc.nextLong() - sc.nextInt() * 30000 >= 500000) {
                f = true;
                System.out.println("YES");
                System.out.printf("%d\n%d\n%d\n%d\n%d\n%d\n", i, i, i, i, i, i);
                break;
            }
        }
        if (!f) {
            System.out.println("NO");
        }
    }
}
0