結果

問題 No.2836 Comment Out
ユーザー tkykwtnbtkykwtnb
提出日時 2024-08-09 22:05:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 125 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 102,244 KB
最終ジャッジ日時 2024-08-09 22:06:05
合計ジャッジ時間 5,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 38 ms
52,440 KB
testcase_02 AC 38 ms
52,572 KB
testcase_03 AC 33 ms
52,444 KB
testcase_04 AC 35 ms
52,880 KB
testcase_05 AC 37 ms
52,604 KB
testcase_06 AC 37 ms
52,148 KB
testcase_07 AC 73 ms
97,116 KB
testcase_08 AC 77 ms
96,536 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 95 ms
101,856 KB
testcase_15 AC 87 ms
101,768 KB
testcase_16 AC 88 ms
101,880 KB
testcase_17 AC 97 ms
102,048 KB
testcase_18 AC 94 ms
101,944 KB
testcase_19 AC 96 ms
102,124 KB
testcase_20 AC 87 ms
101,924 KB
testcase_21 AC 85 ms
102,224 KB
testcase_22 AC 89 ms
102,076 KB
testcase_23 AC 88 ms
102,196 KB
testcase_24 AC 55 ms
81,980 KB
testcase_25 AC 66 ms
96,580 KB
testcase_26 AC 49 ms
73,884 KB
testcase_27 AC 66 ms
93,272 KB
testcase_28 AC 62 ms
91,368 KB
testcase_29 AC 67 ms
91,340 KB
testcase_30 AC 57 ms
77,740 KB
testcase_31 AC 65 ms
89,808 KB
testcase_32 AC 45 ms
69,512 KB
testcase_33 AC 56 ms
80,972 KB
testcase_34 AC 52 ms
71,072 KB
testcase_35 AC 74 ms
98,588 KB
testcase_36 AC 56 ms
79,452 KB
testcase_37 AC 75 ms
98,072 KB
testcase_38 AC 64 ms
86,100 KB
testcase_39 AC 62 ms
85,324 KB
testcase_40 AC 62 ms
88,552 KB
testcase_41 AC 71 ms
92,792 KB
testcase_42 AC 70 ms
95,600 KB
testcase_43 AC 46 ms
68,768 KB
testcase_44 AC 35 ms
52,404 KB
testcase_45 WA -
testcase_46 AC 34 ms
53,072 KB
testcase_47 WA -
testcase_48 AC 36 ms
52,316 KB
testcase_49 AC 37 ms
52,480 KB
testcase_50 AC 36 ms
52,820 KB
testcase_51 AC 36 ms
52,700 KB
testcase_52 WA -
testcase_53 AC 43 ms
52,820 KB
testcase_54 AC 38 ms
52,864 KB
testcase_55 AC 37 ms
52,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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