結果

問題 No.2836 Comment Out
ユーザー Mao-betaMao-beta
提出日時 2024-08-19 01:42:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 102,672 KB
最終ジャッジ日時 2024-08-19 01:42:18
合計ジャッジ時間 7,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,764 KB
testcase_01 AC 38 ms
56,700 KB
testcase_02 AC 38 ms
55,656 KB
testcase_03 AC 38 ms
56,660 KB
testcase_04 AC 37 ms
56,904 KB
testcase_05 AC 38 ms
56,380 KB
testcase_06 AC 38 ms
56,592 KB
testcase_07 AC 78 ms
100,684 KB
testcase_08 AC 68 ms
100,504 KB
testcase_09 AC 83 ms
102,564 KB
testcase_10 AC 83 ms
101,920 KB
testcase_11 AC 85 ms
102,432 KB
testcase_12 AC 83 ms
102,184 KB
testcase_13 AC 89 ms
102,672 KB
testcase_14 AC 83 ms
102,172 KB
testcase_15 AC 82 ms
102,428 KB
testcase_16 AC 81 ms
102,436 KB
testcase_17 AC 91 ms
102,284 KB
testcase_18 AC 87 ms
101,992 KB
testcase_19 AC 82 ms
102,112 KB
testcase_20 AC 82 ms
101,916 KB
testcase_21 AC 83 ms
102,176 KB
testcase_22 AC 83 ms
102,284 KB
testcase_23 AC 83 ms
102,308 KB
testcase_24 AC 60 ms
85,964 KB
testcase_25 AC 80 ms
100,300 KB
testcase_26 AC 55 ms
78,228 KB
testcase_27 AC 74 ms
98,056 KB
testcase_28 AC 69 ms
95,816 KB
testcase_29 AC 70 ms
95,204 KB
testcase_30 AC 55 ms
80,876 KB
testcase_31 AC 66 ms
92,548 KB
testcase_32 AC 49 ms
73,544 KB
testcase_33 AC 58 ms
85,116 KB
testcase_34 AC 51 ms
75,936 KB
testcase_35 AC 76 ms
96,172 KB
testcase_36 AC 58 ms
83,120 KB
testcase_37 AC 74 ms
96,584 KB
testcase_38 AC 62 ms
89,072 KB
testcase_39 AC 63 ms
88,996 KB
testcase_40 AC 62 ms
92,296 KB
testcase_41 AC 76 ms
94,944 KB
testcase_42 AC 71 ms
99,448 KB
testcase_43 AC 48 ms
73,204 KB
testcase_44 AC 53 ms
56,404 KB
testcase_45 AC 38 ms
55,912 KB
testcase_46 AC 37 ms
56,724 KB
testcase_47 AC 38 ms
55,928 KB
testcase_48 AC 36 ms
57,552 KB
testcase_49 AC 37 ms
55,828 KB
testcase_50 AC 36 ms
56,468 KB
testcase_51 AC 40 ms
55,772 KB
testcase_52 AC 41 ms
57,000 KB
testcase_53 AC 39 ms
56,344 KB
testcase_54 AC 38 ms
56,540 KB
testcase_55 AC 36 ms
56,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.set_int_max_str_digits(10 ** 6)
sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    A = NLI()
    if min(A) <= 1:
        print("Yes")
    else:
        print("No")


if __name__ == "__main__":
    main()
0