結果

問題 No.390 最長の数列
ユーザー JunOnumaJunOnuma
提出日時 2017-05-22 11:01:28
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,262 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 50,216 KB
最終ジャッジ日時 2024-10-02 12:10:48
合計ジャッジ時間 15,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 588 ms
45,740 KB
testcase_01 AC 356 ms
45,980 KB
testcase_02 AC 532 ms
45,924 KB
testcase_03 AC 413 ms
45,620 KB
testcase_04 AC 540 ms
45,808 KB
testcase_05 AC 270 ms
50,076 KB
testcase_06 AC 3,262 ms
50,072 KB
testcase_07 AC 375 ms
45,868 KB
testcase_08 AC 204 ms
45,888 KB
testcase_09 AC 368 ms
45,876 KB
testcase_10 AC 544 ms
50,032 KB
testcase_11 AC 581 ms
50,040 KB
testcase_12 AC 581 ms
50,216 KB
testcase_13 AC 822 ms
49,028 KB
testcase_14 AC 3,161 ms
50,160 KB
testcase_15 AC 200 ms
45,964 KB
testcase_16 AC 200 ms
45,744 KB
testcase_17 AC 212 ms
46,224 KB
testcase_18 AC 221 ms
46,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(raw_input())
l = map(int, raw_input().split())
ll = [0 for _ in range(10**6+1)]
for i in l:
    ll[i] = 1
for i,j in enumerate(ll):
    if j == 0:
        continue
    k = i*2
    while k <= 10**6:
        if ll[k] != 0:
            ll[k] = max(ll[k], j+1)
        k += i
print max(ll)
0