結果

問題 No.2836 Comment Out
ユーザー PralaPrala
提出日時 2024-08-09 22:02:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 102,428 KB
最終ジャッジ日時 2024-08-09 22:02:33
合計ジャッジ時間 6,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 WA -
testcase_07 AC 75 ms
96,128 KB
testcase_08 AC 74 ms
95,736 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 97 ms
101,844 KB
testcase_15 AC 96 ms
102,044 KB
testcase_16 AC 98 ms
101,888 KB
testcase_17 WA -
testcase_18 AC 96 ms
102,248 KB
testcase_19 WA -
testcase_20 AC 112 ms
102,000 KB
testcase_21 AC 100 ms
101,760 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 64 ms
81,652 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 75 ms
93,056 KB
testcase_28 AC 72 ms
90,968 KB
testcase_29 AC 72 ms
90,984 KB
testcase_30 AC 59 ms
76,928 KB
testcase_31 AC 70 ms
89,216 KB
testcase_32 AC 51 ms
69,236 KB
testcase_33 WA -
testcase_34 AC 59 ms
71,168 KB
testcase_35 AC 79 ms
96,896 KB
testcase_36 AC 62 ms
79,148 KB
testcase_37 AC 77 ms
96,372 KB
testcase_38 AC 71 ms
85,248 KB
testcase_39 AC 67 ms
84,992 KB
testcase_40 AC 69 ms
87,424 KB
testcase_41 AC 73 ms
91,648 KB
testcase_42 AC 75 ms
95,104 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 38 ms
52,224 KB
testcase_46 AC 37 ms
51,840 KB
testcase_47 WA -
testcase_48 AC 37 ms
51,712 KB
testcase_49 AC 38 ms
51,840 KB
testcase_50 WA -
testcase_51 AC 38 ms
51,584 KB
testcase_52 WA -
testcase_53 AC 38 ms
51,840 KB
testcase_54 AC 38 ms
52,096 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

print("Yes" if max(A) <= N else "No")
0