結果
問題 | No.334 門松ゲーム |
ユーザー | Daigo HIROOKA |
提出日時 | 2018-05-26 02:07:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 168 ms / 2,000 ms |
コード長 | 1,028 bytes |
コンパイル時間 | 3,829 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 42,644 KB |
最終ジャッジ日時 | 2024-06-28 18:07:56 |
合計ジャッジ時間 | 6,577 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
42,256 KB |
testcase_01 | AC | 113 ms
40,076 KB |
testcase_02 | AC | 143 ms
41,404 KB |
testcase_03 | AC | 162 ms
42,488 KB |
testcase_04 | AC | 157 ms
42,644 KB |
testcase_05 | AC | 148 ms
42,164 KB |
testcase_06 | AC | 160 ms
42,580 KB |
testcase_07 | AC | 150 ms
41,464 KB |
testcase_08 | AC | 160 ms
42,476 KB |
testcase_09 | AC | 128 ms
41,040 KB |
testcase_10 | AC | 149 ms
41,696 KB |
testcase_11 | AC | 159 ms
42,312 KB |
testcase_12 | AC | 160 ms
42,540 KB |
testcase_13 | AC | 158 ms
42,368 KB |
testcase_14 | AC | 120 ms
40,368 KB |
testcase_15 | AC | 168 ms
42,504 KB |
ソースコード
import java.util.*; public class No334_2{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int N = sc.nextInt(); StringBuilder sb = new StringBuilder(); int[] K = new int[N]; for(int i = 0; i < N; i++){ K[i] = sc.nextInt(); } if(game(K)) System.out.println(ans[0]+" "+ans[1]+" "+ans[2]); else System.out.println(-1); } static int[] ans = new int[3]; private static boolean game(int[] K){ int n = K.length; for(int i = 0; i < n; i++){ for(int j = i+1; j < n; j++){ for(int k = j+1; k < n; k++){ int a = K[i]; int b = K[j]; int c = K[k]; if(b > Math.max(a, c) || b < Math.min(a, c)){ int[] K_new = new int[n-3]; int idx = 0; for(int l = 0; l < n; l++){ if(l == i || l == j || l == k) continue; K_new[idx] = K[l]; idx++; } if(!game(K_new)){ ans[0] = i; ans[1] = j; ans[2] = k; return true; // D wins } } } } } return false; // D lose } }