結果

問題 No.2218 Multiple LIS
ユーザー KudeKude
提出日時 2023-02-17 21:31:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 180 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,592 KB
最終ジャッジ日時 2024-07-19 12:35:30
合計ジャッジ時間 7,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
69,504 KB
testcase_01 AC 42 ms
60,672 KB
testcase_02 AC 49 ms
65,536 KB
testcase_03 AC 45 ms
63,872 KB
testcase_04 AC 46 ms
63,872 KB
testcase_05 AC 47 ms
64,000 KB
testcase_06 AC 45 ms
63,232 KB
testcase_07 AC 46 ms
64,000 KB
testcase_08 AC 46 ms
63,488 KB
testcase_09 AC 47 ms
63,232 KB
testcase_10 AC 47 ms
61,312 KB
testcase_11 AC 45 ms
61,056 KB
testcase_12 AC 66 ms
75,904 KB
testcase_13 AC 88 ms
76,160 KB
testcase_14 AC 77 ms
76,160 KB
testcase_15 AC 78 ms
76,032 KB
testcase_16 AC 59 ms
75,904 KB
testcase_17 AC 92 ms
76,228 KB
testcase_18 AC 47 ms
65,280 KB
testcase_19 AC 60 ms
75,904 KB
testcase_20 AC 82 ms
76,208 KB
testcase_21 AC 53 ms
68,736 KB
testcase_22 AC 73 ms
80,944 KB
testcase_23 AC 88 ms
84,096 KB
testcase_24 AC 61 ms
76,800 KB
testcase_25 AC 89 ms
85,504 KB
testcase_26 AC 106 ms
90,304 KB
testcase_27 AC 108 ms
90,240 KB
testcase_28 AC 109 ms
90,240 KB
testcase_29 AC 105 ms
90,624 KB
testcase_30 AC 107 ms
90,508 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
M = 10 ** 5 + 1
d = [0] * M
a = list(map(int, input().split()))
for x in reversed(a):
    d[x] = max((d[b] for b in range(x, M, x)), default = 0) + 1
print(max(d))
0