結果

問題 No.231 めぐるはめぐる (1)
ユーザー tsunabittsunabit
提出日時 2019-05-23 23:30:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 1,000 ms
コード長 855 bytes
コンパイル時間 3,601 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 57,292 KB
最終ジャッジ日時 2024-09-17 09:55:16
合計ジャッジ時間 6,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
57,292 KB
testcase_01 AC 139 ms
54,104 KB
testcase_02 AC 127 ms
54,188 KB
testcase_03 AC 166 ms
54,468 KB
testcase_04 AC 175 ms
56,812 KB
testcase_05 AC 165 ms
54,548 KB
testcase_06 AC 167 ms
54,456 KB
testcase_07 AC 150 ms
54,296 KB
testcase_08 AC 165 ms
54,432 KB
testcase_09 AC 118 ms
54,060 KB
testcase_10 AC 103 ms
52,948 KB
testcase_11 AC 112 ms
53,956 KB
testcase_12 AC 165 ms
54,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;

public class No231 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        int n = s.nextInt();
        
        int max = 0;
        int dan = 0;
        // 𝐺𝑖−30000𝐷𝑖 
        for(int i = 0; i < n; i++) {
        	int g = s.nextInt();
        	int d = s.nextInt();
        	int temp = g - 30000 * d;
        	if(max < temp) {
        		max = temp;
        		dan = i + 1;
        	}
        }
        if(max * 6 >= 3000000) {
        	System.out.println("YES");
        	for(int i = 0; i < 6; i++) {
        		System.out.println(dan);
        	}
        }else {
        	System.out.println("NO");
        }
        
    }
}
0