結果

問題 No.2836 Comment Out
ユーザー PralaPrala
提出日時 2024-08-09 22:08:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 116,368 KB
最終ジャッジ日時 2024-08-09 22:08:10
合計ジャッジ時間 6,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,840 KB
testcase_01 AC 35 ms
52,436 KB
testcase_02 AC 34 ms
52,612 KB
testcase_03 AC 37 ms
53,440 KB
testcase_04 AC 35 ms
52,120 KB
testcase_05 AC 34 ms
52,040 KB
testcase_06 AC 34 ms
52,372 KB
testcase_07 AC 59 ms
81,644 KB
testcase_08 AC 59 ms
81,268 KB
testcase_09 AC 111 ms
116,052 KB
testcase_10 AC 109 ms
116,180 KB
testcase_11 AC 113 ms
116,264 KB
testcase_12 AC 114 ms
116,132 KB
testcase_13 AC 113 ms
116,272 KB
testcase_14 AC 109 ms
116,248 KB
testcase_15 AC 112 ms
116,020 KB
testcase_16 AC 121 ms
116,040 KB
testcase_17 AC 109 ms
116,272 KB
testcase_18 AC 110 ms
116,368 KB
testcase_19 AC 109 ms
116,304 KB
testcase_20 AC 113 ms
116,172 KB
testcase_21 AC 111 ms
116,140 KB
testcase_22 AC 110 ms
116,284 KB
testcase_23 AC 112 ms
116,064 KB
testcase_24 AC 68 ms
90,620 KB
testcase_25 AC 75 ms
95,300 KB
testcase_26 AC 54 ms
73,420 KB
testcase_27 AC 88 ms
103,984 KB
testcase_28 AC 69 ms
90,860 KB
testcase_29 AC 81 ms
103,340 KB
testcase_30 AC 64 ms
84,032 KB
testcase_31 AC 81 ms
99,532 KB
testcase_32 AC 51 ms
69,072 KB
testcase_33 AC 61 ms
82,328 KB
testcase_34 AC 53 ms
76,780 KB
testcase_35 AC 90 ms
110,244 KB
testcase_36 AC 56 ms
78,144 KB
testcase_37 AC 87 ms
110,504 KB
testcase_38 AC 77 ms
94,932 KB
testcase_39 AC 62 ms
85,196 KB
testcase_40 AC 65 ms
87,784 KB
testcase_41 AC 85 ms
103,076 KB
testcase_42 AC 73 ms
93,336 KB
testcase_43 AC 45 ms
67,724 KB
testcase_44 AC 35 ms
52,124 KB
testcase_45 AC 35 ms
52,068 KB
testcase_46 AC 35 ms
53,644 KB
testcase_47 AC 35 ms
51,960 KB
testcase_48 AC 34 ms
52,692 KB
testcase_49 AC 34 ms
52,188 KB
testcase_50 AC 33 ms
52,212 KB
testcase_51 AC 34 ms
52,212 KB
testcase_52 AC 35 ms
51,964 KB
testcase_53 AC 36 ms
52,640 KB
testcase_54 AC 34 ms
53,008 KB
testcase_55 AC 37 ms
52,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = set(map(int, input().split()))

print("Yes" if 0 in A or 1 in A else "No")
0