結果

問題 No.2836 Comment Out
ユーザー moon17moon17
提出日時 2024-08-09 22:57:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 113,012 KB
最終ジャッジ日時 2024-08-09 22:57:24
合計ジャッジ時間 5,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,156 KB
testcase_01 AC 39 ms
52,092 KB
testcase_02 AC 37 ms
52,812 KB
testcase_03 AC 35 ms
51,952 KB
testcase_04 AC 35 ms
52,068 KB
testcase_05 AC 34 ms
53,112 KB
testcase_06 AC 34 ms
53,252 KB
testcase_07 AC 75 ms
102,716 KB
testcase_08 AC 74 ms
103,744 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 88 ms
111,220 KB
testcase_15 AC 89 ms
111,376 KB
testcase_16 AC 87 ms
112,000 KB
testcase_17 AC 84 ms
110,504 KB
testcase_18 AC 87 ms
110,324 KB
testcase_19 AC 84 ms
110,396 KB
testcase_20 AC 87 ms
112,688 KB
testcase_21 AC 86 ms
110,748 KB
testcase_22 AC 86 ms
110,580 KB
testcase_23 AC 87 ms
110,304 KB
testcase_24 AC 62 ms
83,572 KB
testcase_25 AC 78 ms
101,904 KB
testcase_26 AC 55 ms
77,108 KB
testcase_27 AC 74 ms
95,920 KB
testcase_28 AC 73 ms
94,484 KB
testcase_29 AC 70 ms
93,904 KB
testcase_30 AC 58 ms
78,892 KB
testcase_31 AC 69 ms
91,692 KB
testcase_32 AC 49 ms
70,976 KB
testcase_33 AC 61 ms
84,308 KB
testcase_34 AC 50 ms
72,580 KB
testcase_35 AC 78 ms
100,432 KB
testcase_36 AC 59 ms
81,804 KB
testcase_37 AC 78 ms
100,924 KB
testcase_38 AC 65 ms
88,532 KB
testcase_39 AC 63 ms
88,756 KB
testcase_40 AC 67 ms
90,888 KB
testcase_41 AC 72 ms
94,204 KB
testcase_42 AC 77 ms
99,336 KB
testcase_43 AC 48 ms
69,608 KB
testcase_44 AC 34 ms
53,620 KB
testcase_45 WA -
testcase_46 AC 34 ms
52,912 KB
testcase_47 WA -
testcase_48 AC 36 ms
52,540 KB
testcase_49 AC 37 ms
52,068 KB
testcase_50 AC 36 ms
52,344 KB
testcase_51 AC 37 ms
52,684 KB
testcase_52 WA -
testcase_53 AC 36 ms
53,492 KB
testcase_54 AC 36 ms
52,440 KB
testcase_55 AC 37 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a=map(int,open(0).read().split())
if 1 in a or max(a)==0:
  print('Yes')
else:
  print('No')
0