結果
問題 | No.2535 多重同値 |
ユーザー | kusagame12 |
提出日時 | 2024-03-04 19:09:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 866 bytes |
コンパイル時間 | 2,327 ms |
コンパイル使用メモリ | 74,136 KB |
実行使用メモリ | 67,048 KB |
最終ジャッジ日時 | 2024-09-29 17:31:03 |
合計ジャッジ時間 | 8,322 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
53,896 KB |
testcase_01 | AC | 104 ms
52,792 KB |
testcase_02 | AC | 118 ms
53,780 KB |
testcase_03 | AC | 123 ms
53,996 KB |
testcase_04 | AC | 122 ms
53,868 KB |
testcase_05 | AC | 123 ms
53,720 KB |
testcase_06 | AC | 129 ms
53,884 KB |
testcase_07 | WA | - |
testcase_08 | AC | 121 ms
53,888 KB |
testcase_09 | WA | - |
testcase_10 | AC | 117 ms
53,804 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); boolean[] isTrue = new boolean[N]; for(int i = 0 ; i < N ; i++){ String yOrN = sc.next(); if(yOrN.equals("Yes")){ isTrue[i] = true; }else{ isTrue[i] = false; } } if(isTrue[0]){ System.out.println("Yes"); }else{ System.out.println("No"); } for(int i = 1 ; i < N ; i++){ if(isTrue[i] == isTrue[0]){ System.out.println("Yes"); }else{ System.out.println("No"); } } } }