結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | mits58 |
提出日時 | 2016-07-02 18:06:59 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 691 bytes |
コンパイル時間 | 2,126 ms |
コンパイル使用メモリ | 77,916 KB |
実行使用メモリ | 56,680 KB |
最終ジャッジ日時 | 2024-10-12 01:09:40 |
合計ジャッジ時間 | 6,319 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 166 ms
54,388 KB |
testcase_02 | AC | 148 ms
54,328 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 180 ms
54,488 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 126 ms
54,132 KB |
testcase_12 | WA | - |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main{ static class dungeon implements Comparable<dungeon>{ int g,d,id; public dungeon(int x,int y,int z){ this.g=x; this.d=y; this.id=z; } public int compareTo(dungeon o) { return (o.g-o.d*30000)-(this.g-this.d*30000); } } public static void main(String[] args){ Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int n=sc.nextInt(); dungeon[] dg=new dungeon[n]; for(int i=0;i<n;i++) dg[i]=new dungeon(sc.nextInt(),sc.nextInt(),i+1); Arrays.sort(dg); if((dg[0].g-dg[0].d*30000)*6>=3000000) for(int i=0;i<6;i++) System.out.println(dg[0].id); else System.out.println("NO"); } } }