結果

問題 No.2836 Comment Out
ユーザー chineristACchineristAC
提出日時 2024-08-09 22:52:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,304 KB
最終ジャッジ日時 2024-08-09 22:52:07
合計ジャッジ時間 6,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
55,424 KB
testcase_01 AC 51 ms
55,808 KB
testcase_02 AC 50 ms
55,680 KB
testcase_03 AC 47 ms
55,552 KB
testcase_04 AC 48 ms
55,296 KB
testcase_05 AC 52 ms
55,424 KB
testcase_06 AC 49 ms
55,296 KB
testcase_07 AC 89 ms
99,200 KB
testcase_08 AC 88 ms
99,072 KB
testcase_09 AC 107 ms
101,924 KB
testcase_10 AC 102 ms
102,172 KB
testcase_11 AC 105 ms
102,040 KB
testcase_12 AC 103 ms
102,292 KB
testcase_13 AC 104 ms
102,304 KB
testcase_14 AC 107 ms
102,168 KB
testcase_15 AC 103 ms
102,044 KB
testcase_16 AC 106 ms
102,164 KB
testcase_17 AC 105 ms
102,048 KB
testcase_18 AC 104 ms
102,048 KB
testcase_19 AC 103 ms
102,048 KB
testcase_20 AC 104 ms
102,168 KB
testcase_21 AC 105 ms
102,180 KB
testcase_22 AC 103 ms
102,172 KB
testcase_23 AC 106 ms
102,044 KB
testcase_24 AC 71 ms
85,248 KB
testcase_25 AC 94 ms
99,328 KB
testcase_26 AC 62 ms
77,568 KB
testcase_27 AC 84 ms
96,256 KB
testcase_28 AC 78 ms
94,336 KB
testcase_29 AC 82 ms
94,720 KB
testcase_30 AC 67 ms
80,512 KB
testcase_31 AC 79 ms
92,416 KB
testcase_32 AC 61 ms
72,960 KB
testcase_33 AC 73 ms
84,736 KB
testcase_34 AC 64 ms
74,496 KB
testcase_35 AC 99 ms
97,408 KB
testcase_36 AC 70 ms
82,304 KB
testcase_37 AC 101 ms
97,152 KB
testcase_38 AC 81 ms
88,576 KB
testcase_39 AC 79 ms
88,320 KB
testcase_40 AC 76 ms
91,008 KB
testcase_41 AC 82 ms
94,848 KB
testcase_42 AC 85 ms
98,304 KB
testcase_43 AC 58 ms
71,808 KB
testcase_44 AC 44 ms
55,296 KB
testcase_45 AC 44 ms
55,552 KB
testcase_46 AC 44 ms
55,680 KB
testcase_47 AC 44 ms
55,552 KB
testcase_48 AC 45 ms
55,552 KB
testcase_49 AC 45 ms
55,680 KB
testcase_50 AC 45 ms
55,552 KB
testcase_51 AC 45 ms
55,296 KB
testcase_52 AC 50 ms
55,552 KB
testcase_53 AC 48 ms
55,552 KB
testcase_54 AC 47 ms
55,552 KB
testcase_55 AC 46 ms
55,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()
print("Yes" if ((0 in A) or (1 in A)) else "No")
0