結果

問題 No.2836 Comment Out
ユーザー ntudantuda
提出日時 2024-08-24 01:31:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 102,160 KB
最終ジャッジ日時 2024-08-24 01:31:28
合計ジャッジ時間 6,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,944 KB
testcase_01 AC 34 ms
53,064 KB
testcase_02 AC 33 ms
52,308 KB
testcase_03 AC 36 ms
53,068 KB
testcase_04 AC 34 ms
53,280 KB
testcase_05 AC 39 ms
52,120 KB
testcase_06 AC 33 ms
52,888 KB
testcase_07 AC 70 ms
96,520 KB
testcase_08 AC 69 ms
95,768 KB
testcase_09 AC 92 ms
102,160 KB
testcase_10 AC 92 ms
101,748 KB
testcase_11 AC 87 ms
101,780 KB
testcase_12 AC 86 ms
102,028 KB
testcase_13 AC 87 ms
101,828 KB
testcase_14 AC 87 ms
102,040 KB
testcase_15 AC 89 ms
101,896 KB
testcase_16 AC 87 ms
101,828 KB
testcase_17 AC 88 ms
101,780 KB
testcase_18 AC 89 ms
101,924 KB
testcase_19 AC 102 ms
101,896 KB
testcase_20 AC 87 ms
102,068 KB
testcase_21 AC 91 ms
101,780 KB
testcase_22 AC 92 ms
101,892 KB
testcase_23 AC 87 ms
101,920 KB
testcase_24 AC 55 ms
82,372 KB
testcase_25 AC 68 ms
95,840 KB
testcase_26 AC 50 ms
74,104 KB
testcase_27 AC 66 ms
92,940 KB
testcase_28 AC 64 ms
92,128 KB
testcase_29 AC 66 ms
92,084 KB
testcase_30 AC 51 ms
77,656 KB
testcase_31 AC 62 ms
89,012 KB
testcase_32 AC 46 ms
70,056 KB
testcase_33 AC 67 ms
82,020 KB
testcase_34 AC 46 ms
71,496 KB
testcase_35 AC 71 ms
98,052 KB
testcase_36 AC 55 ms
80,016 KB
testcase_37 AC 72 ms
97,312 KB
testcase_38 AC 62 ms
85,176 KB
testcase_39 AC 62 ms
85,324 KB
testcase_40 AC 62 ms
88,496 KB
testcase_41 AC 64 ms
91,352 KB
testcase_42 AC 70 ms
94,952 KB
testcase_43 AC 45 ms
68,912 KB
testcase_44 AC 35 ms
53,300 KB
testcase_45 AC 34 ms
52,212 KB
testcase_46 AC 36 ms
52,240 KB
testcase_47 AC 33 ms
52,500 KB
testcase_48 AC 34 ms
53,220 KB
testcase_49 AC 34 ms
53,524 KB
testcase_50 AC 36 ms
52,428 KB
testcase_51 AC 36 ms
51,884 KB
testcase_52 AC 34 ms
52,452 KB
testcase_53 AC 34 ms
53,508 KB
testcase_54 AC 40 ms
52,668 KB
testcase_55 AC 34 ms
51,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mina = min(list(map(int,input().split())))
if mina <= 1:
    print("Yes")
else:
    print("No")
0