結果
問題 | No.282 おもりと天秤(2) |
ユーザー | ぴろず |
提出日時 | 2015-09-18 23:29:52 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 895 bytes |
コンパイル時間 | 4,445 ms |
コンパイル使用メモリ | 81,972 KB |
実行使用メモリ | 84,156 KB |
平均クエリ数 | 116.21 |
最終ジャッジ日時 | 2024-07-16 05:56:58 |
合計ジャッジ時間 | 15,157 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 158 ms
71,180 KB |
testcase_01 | AC | 292 ms
75,476 KB |
testcase_02 | AC | 244 ms
73,796 KB |
testcase_03 | AC | 225 ms
71,616 KB |
testcase_04 | AC | 210 ms
71,888 KB |
testcase_05 | AC | 272 ms
74,316 KB |
testcase_06 | AC | 308 ms
76,072 KB |
testcase_07 | AC | 221 ms
71,780 KB |
testcase_08 | AC | 317 ms
75,988 KB |
testcase_09 | AC | 159 ms
71,700 KB |
testcase_10 | AC | 3,205 ms
84,156 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
package no282; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Integer[] ans = new Integer[n]; for(int i=0;i<n;i++) { ans[i] = i; } Arrays.sort(ans,(x,y)->{ StringBuilder sb = new StringBuilder(); sb.append("? " + (x+1) + " " + (y+1)); for(int i=0;i<n-1;i++) { sb.append(" 0 0"); } System.out.println(sb.toString()); char c = sc.next().charAt(0); // System.out.println(x + "," + y + "," + c); int ret = 0; if (c == '<') { ret = -1; }else if(c == '>') { ret = 1; } for(int i=0;i<n-1;i++) { sc.next(); } return ret; }); StringBuilder sb= new StringBuilder(); sb.append('!'); for(int i=0;i<n;i++) { sb.append(' '); sb.append(ans[i] + 1); } System.out.println(sb.toString()); } }