結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | googol_S0 |
提出日時 | 2021-11-05 21:26:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 322 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 122,820 KB |
最終ジャッジ日時 | 2024-11-06 12:08:45 |
合計ジャッジ時間 | 7,536 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 226 ms
122,332 KB |
testcase_01 | AC | 153 ms
91,200 KB |
testcase_02 | AC | 156 ms
91,456 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 155 ms
91,344 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 224 ms
122,336 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
N=int(input()) A=list(map(int,input().split())) M=10**6+3 C=[0]*M for i in range(N): C[A[i]]+=1 X=[0]*M for i in range(2,M): for j in range(i,M,i): X[i]+=C[j] ANS=[0]*(N+1) for i in range(M): ANS[X[i]]=max(ANS[X[i]],i) for i in range(N-1,-1,-1): ANS[i]=max(ANS[i],ANS[i+1]) for i in range(N): print(ANS[N-i])