結果

問題 No.2836 Comment Out
ユーザー titiatitia
提出日時 2024-08-09 22:04:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,988 KB
最終ジャッジ日時 2024-08-09 22:04:31
合計ジャッジ時間 5,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 26 ms
10,368 KB
testcase_07 AC 63 ms
14,496 KB
testcase_08 AC 61 ms
14,612 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 94 ms
32,364 KB
testcase_15 AC 90 ms
32,856 KB
testcase_16 AC 92 ms
32,868 KB
testcase_17 WA -
testcase_18 AC 94 ms
32,856 KB
testcase_19 WA -
testcase_20 AC 91 ms
32,856 KB
testcase_21 AC 90 ms
32,860 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 56 ms
21,296 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 74 ms
26,344 KB
testcase_28 AC 70 ms
25,344 KB
testcase_29 AC 67 ms
25,128 KB
testcase_30 AC 52 ms
18,900 KB
testcase_31 AC 77 ms
24,720 KB
testcase_32 AC 42 ms
16,112 KB
testcase_33 WA -
testcase_34 AC 44 ms
16,428 KB
testcase_35 AC 80 ms
28,528 KB
testcase_36 AC 55 ms
19,900 KB
testcase_37 AC 78 ms
27,720 KB
testcase_38 AC 60 ms
22,952 KB
testcase_39 AC 64 ms
23,428 KB
testcase_40 AC 66 ms
24,328 KB
testcase_41 AC 67 ms
25,060 KB
testcase_42 AC 74 ms
26,068 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 25 ms
10,624 KB
testcase_46 AC 24 ms
10,496 KB
testcase_47 WA -
testcase_48 AC 25 ms
10,368 KB
testcase_49 AC 25 ms
10,368 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 25 ms
10,496 KB
testcase_54 AC 24 ms
10,496 KB
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

S=N*(N+1)//2

if sum(A)<=S:
    print("Yes")
else:
    print("No")
0