結果

問題 No.365 ジェンガソート
ユーザー hang_hang_clnhang_hang_cln
提出日時 2018-06-11 00:48:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,844 KB
最終ジャッジ日時 2024-06-30 13:26:27
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,496 KB
testcase_12 AC 29 ms
10,496 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 98 ms
18,268 KB
testcase_17 AC 98 ms
20,048 KB
testcase_18 AC 36 ms
11,520 KB
testcase_19 AC 88 ms
19,896 KB
testcase_20 AC 45 ms
13,696 KB
testcase_21 AC 47 ms
12,800 KB
testcase_22 AC 97 ms
18,180 KB
testcase_23 AC 69 ms
15,180 KB
testcase_24 AC 93 ms
17,864 KB
testcase_25 AC 49 ms
12,928 KB
testcase_26 AC 81 ms
16,044 KB
testcase_27 AC 121 ms
20,608 KB
testcase_28 AC 81 ms
16,432 KB
testcase_29 AC 111 ms
19,060 KB
testcase_30 AC 81 ms
16,660 KB
testcase_31 AC 54 ms
13,184 KB
testcase_32 AC 53 ms
13,056 KB
testcase_33 AC 119 ms
20,412 KB
testcase_34 AC 45 ms
12,288 KB
testcase_35 AC 95 ms
17,912 KB
testcase_36 AC 81 ms
20,720 KB
testcase_37 AC 117 ms
20,716 KB
testcase_38 AC 117 ms
20,596 KB
testcase_39 AC 102 ms
20,844 KB
testcase_40 AC 102 ms
20,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
xs = list(map(int,input().split()))
y = 0
z = 0
for x in xs:
    if y < x:
        y = x
    else:
        z = max(z, x)
ans = 0
for x in xs:
    if x <= z:
        ans += 1
print(ans)
0