結果

問題 No.231 めぐるはめぐる (1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-08 21:52:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 187 ms / 1,000 ms
コード長 729 bytes
コンパイル時間 2,694 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 43,436 KB
最終ジャッジ日時 2024-10-06 20:09:26
合計ジャッジ時間 5,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    int[] p = new int[N];
    for(int i = 0; i < N; i++) {
      int g = sc.nextInt();
      int d = sc.nextInt();
      p[i] = g - 30000 * d;
    }
    int[] copy = p.clone();
    Arrays.sort(copy);
    int maxp = copy[copy.length - 1];
    if(6 * maxp >= 3000000) {
      int index = 0;
      for(int i = 0; i < N; i++) {
        if(p[i] == maxp) {
          index = i + 1;
          break;
        }
      }
      System.out.println("YES");
      for(int i = 0; i < 6; i++) {
        System.out.println(index);
      }
    } else {
      System.out.println("NO");
    }
  }
}
0