結果

問題 No.231 めぐるはめぐる (1)
ユーザー spaciaspacia
提出日時 2016-01-04 08:36:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 81 ms / 1,000 ms
コード長 742 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 38,060 KB
最終ジャッジ日時 2024-11-08 00:09:35
合計ジャッジ時間 3,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
38,060 KB
testcase_01 AC 52 ms
37,092 KB
testcase_02 AC 51 ms
37,024 KB
testcase_03 AC 63 ms
37,428 KB
testcase_04 AC 79 ms
37,980 KB
testcase_05 AC 57 ms
36,916 KB
testcase_06 AC 62 ms
37,612 KB
testcase_07 AC 54 ms
36,912 KB
testcase_08 AC 57 ms
36,580 KB
testcase_09 AC 49 ms
36,748 KB
testcase_10 AC 51 ms
36,896 KB
testcase_11 AC 50 ms
36,696 KB
testcase_12 AC 64 ms
36,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int maxExp = -1 , maxId = -1;
		
		for (int i = 0; i < n; i++) {
			String[] line = br.readLine().split(" ");
			int g = Integer.parseInt(line[0]);
			int d = Integer.parseInt(line[1]);
			int exp = g - d * 30000;
			if (exp > maxExp) {
				maxExp = exp;
				maxId = i + 1;
			}
		}
		
		if (maxExp * 6 >= 3000000) {
			out("YES");
			for (int i = 0; i < 6; i++) out(maxId);
		} else {
			out("NO");
		}
		
	}
}
0