結果

問題 No.231 めぐるはめぐる (1)
コンテスト
ユーザー kou6839
提出日時 2015-06-26 22:56:38
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
AC  
実行時間 119 ms / 1,000 ms
+ 604µs
コード長 843 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,341 ms
コンパイル使用メモリ 86,320 KB
実行使用メモリ 49,820 KB
最終ジャッジ日時 2026-09-20 22:52:00
合計ジャッジ時間 3,997 ms
ジャッジサーバーID
(参考情報)
judge4_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.Arrays;
import java.util.Scanner;

class dan implements Comparable<dan>{
	int exp,num;
	public dan(int exp,int num) {
		// TODO 自動生成されたコンストラクター・スタブ
		this.exp = exp;
		this.num = num;
	}
	@Override
	public int compareTo(dan o) {
		// TODO 自動生成されたメソッド・スタブ
		return this.exp-o.exp;
	}
}
public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		dan[] effi = new dan[N];
		for(int i=0;i<N;i++){
			int a = sc.nextInt();
			int b = sc.nextInt();
			effi[i]=new dan(a-b*30000,i+1);
		}
		Arrays.sort(effi);
		if(effi[effi.length-1].exp*6>=3000000){
			System.out.println("YES");
			for(int i=0;i<6;i++) System.out.println(effi[effi.length-1].num);
		}else{
			System.out.println("NO");
		}
	}
}
0