結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2020-02-01 00:33:43 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 127,304 KB |
最終ジャッジ日時 | 2024-09-17 12:31:40 |
合計ジャッジ時間 | 4,441 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
68,508 KB |
testcase_01 | AC | 40 ms
67,284 KB |
testcase_02 | AC | 40 ms
67,040 KB |
testcase_03 | AC | 39 ms
68,360 KB |
testcase_04 | AC | 40 ms
67,656 KB |
testcase_05 | AC | 40 ms
67,324 KB |
testcase_06 | AC | 41 ms
68,440 KB |
testcase_07 | AC | 40 ms
68,184 KB |
testcase_08 | AC | 39 ms
67,840 KB |
testcase_09 | AC | 39 ms
68,224 KB |
testcase_10 | AC | 73 ms
76,108 KB |
testcase_11 | AC | 73 ms
77,236 KB |
testcase_12 | AC | 74 ms
76,828 KB |
testcase_13 | AC | 123 ms
126,432 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 678 ms
102,472 KB |
ソースコード
N = int(input()) A = list(map(int,input().split())) lis = [ [] for i in range(3*(10**5)+1) ] maxlen = [0] * N for loop in range(N): na = A[loop] for i in range(int(na**0.5)+1): i += 1 if na % i == 0: if i < na: for j in lis[i]: maxlen[loop] = max(maxlen[loop] , maxlen[j] + 1) if na // i < na: for j in lis[na//i]: maxlen[loop] = max(maxlen[loop] , maxlen[j] + 1) lis[na].append(loop) #print (maxlen) print (max(maxlen)+1)