結果

問題 No.2836 Comment Out
ユーザー tkykwtnbtkykwtnb
提出日時 2024-08-09 22:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 102,100 KB
最終ジャッジ日時 2024-08-09 22:25:26
合計ジャッジ時間 5,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,056 KB
testcase_01 AC 33 ms
52,484 KB
testcase_02 AC 37 ms
52,020 KB
testcase_03 AC 34 ms
52,732 KB
testcase_04 AC 35 ms
52,800 KB
testcase_05 AC 34 ms
52,904 KB
testcase_06 AC 34 ms
53,560 KB
testcase_07 AC 67 ms
95,916 KB
testcase_08 AC 66 ms
96,104 KB
testcase_09 AC 87 ms
102,088 KB
testcase_10 AC 87 ms
102,100 KB
testcase_11 AC 86 ms
101,828 KB
testcase_12 AC 87 ms
101,952 KB
testcase_13 AC 89 ms
102,032 KB
testcase_14 AC 87 ms
101,912 KB
testcase_15 AC 91 ms
101,868 KB
testcase_16 AC 87 ms
101,912 KB
testcase_17 AC 99 ms
102,004 KB
testcase_18 AC 90 ms
101,956 KB
testcase_19 AC 86 ms
101,996 KB
testcase_20 AC 85 ms
102,044 KB
testcase_21 AC 85 ms
101,960 KB
testcase_22 AC 88 ms
101,904 KB
testcase_23 AC 87 ms
101,904 KB
testcase_24 AC 55 ms
81,988 KB
testcase_25 AC 66 ms
96,068 KB
testcase_26 AC 55 ms
74,508 KB
testcase_27 AC 72 ms
93,872 KB
testcase_28 AC 65 ms
91,232 KB
testcase_29 AC 64 ms
92,456 KB
testcase_30 AC 50 ms
78,456 KB
testcase_31 AC 70 ms
90,280 KB
testcase_32 AC 44 ms
70,116 KB
testcase_33 AC 55 ms
82,460 KB
testcase_34 AC 47 ms
71,284 KB
testcase_35 AC 70 ms
97,080 KB
testcase_36 AC 55 ms
80,268 KB
testcase_37 AC 70 ms
97,684 KB
testcase_38 AC 59 ms
85,180 KB
testcase_39 AC 58 ms
84,808 KB
testcase_40 AC 61 ms
88,040 KB
testcase_41 AC 65 ms
92,540 KB
testcase_42 AC 67 ms
95,160 KB
testcase_43 AC 44 ms
67,612 KB
testcase_44 AC 34 ms
53,292 KB
testcase_45 AC 34 ms
52,272 KB
testcase_46 AC 33 ms
52,564 KB
testcase_47 AC 34 ms
52,352 KB
testcase_48 AC 33 ms
52,772 KB
testcase_49 AC 33 ms
51,828 KB
testcase_50 AC 36 ms
52,872 KB
testcase_51 AC 35 ms
52,564 KB
testcase_52 AC 34 ms
52,188 KB
testcase_53 AC 37 ms
52,632 KB
testcase_54 AC 37 ms
52,352 KB
testcase_55 AC 37 ms
53,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()
A=list(map(int,input().split()))
print("Yes" if A.count(0)>0 or A.count(1)>0 else "No")
0