結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | 37zigen |
提出日時 | 2016-03-30 13:25:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 195 ms / 1,000 ms |
コード長 | 566 bytes |
コンパイル時間 | 1,997 ms |
コンパイル使用メモリ | 74,048 KB |
実行使用メモリ | 43,312 KB |
最終ジャッジ日時 | 2024-11-08 00:12:44 |
合計ジャッジ時間 | 4,990 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 195 ms
43,312 KB |
testcase_01 | AC | 157 ms
41,432 KB |
testcase_02 | AC | 138 ms
41,336 KB |
testcase_03 | AC | 179 ms
42,704 KB |
testcase_04 | AC | 188 ms
43,144 KB |
testcase_05 | AC | 178 ms
42,596 KB |
testcase_06 | AC | 184 ms
42,644 KB |
testcase_07 | AC | 161 ms
41,584 KB |
testcase_08 | AC | 182 ms
42,016 KB |
testcase_09 | AC | 122 ms
41,012 KB |
testcase_10 | AC | 123 ms
40,884 KB |
testcase_11 | AC | 121 ms
40,972 KB |
testcase_12 | AC | 175 ms
42,540 KB |
ソースコード
package yukicoder231; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); long[] g=new long[n]; long[] d=new long[n]; long max=-999999; long maxi=-1; for(int i=0;i<n;i++){ g[i]=sc.nextInt(); d[i]=sc.nextInt(); if(g[i]-30000*d[i]>max){ max=Math.max(g[i]-30000*d[i], max); maxi=i; } } if(6*max>=3000000){ System.out.println("YES"); for(int i=0;i<6;i++) System.out.println(maxi+1); }else{ System.out.println("NO"); } } }