結果

問題 No.231 めぐるはめぐる (1)
ユーザー tsunabittsunabit
提出日時 2019-05-23 23:27:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 845 bytes
コンパイル時間 3,430 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 56,812 KB
最終ジャッジ日時 2024-09-17 09:54:57
合計ジャッジ時間 7,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 168 ms
53,984 KB
testcase_02 AC 153 ms
54,156 KB
testcase_03 AC 195 ms
54,548 KB
testcase_04 AC 203 ms
56,688 KB
testcase_05 AC 191 ms
54,484 KB
testcase_06 AC 194 ms
54,496 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 132 ms
54,248 KB
testcase_11 AC 134 ms
54,008 KB
testcase_12 AC 197 ms
54,520 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