結果
問題 | No.2343 (l+r)/2 |
ユーザー | ks2m |
提出日時 | 2023-06-09 21:30:07 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 887 bytes |
コンパイル時間 | 2,509 ms |
コンパイル使用メモリ | 79,464 KB |
実行使用メモリ | 61,672 KB |
最終ジャッジ日時 | 2025-01-02 02:20:46 |
合計ジャッジ時間 | 5,791 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
51,204 KB |
testcase_01 | AC | 374 ms
58,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 159 ms
58,332 KB |
testcase_05 | AC | 100 ms
55,244 KB |
testcase_06 | AC | 101 ms
55,088 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 96 ms
55,160 KB |
testcase_11 | AC | 175 ms
61,672 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 186 ms
61,544 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); PrintWriter pw = new PrintWriter(System.out); for (int z = 0; z < t; z++) { int n = Integer.parseInt(br.readLine()); String[] sa = br.readLine().split(" "); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); } if (a[0] != a[n - 1]) { pw.println("Yes"); continue; } boolean flg = false; for (int i = 2; i < n - 1; i++) { if (a[i - 1] == a[i] && a[0] != a[i]) { flg = true; break; } } if (flg) { pw.println("Yes"); } else { pw.println("No"); } } pw.flush(); br.close(); } }