結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | ああいい |
提出日時 | 2022-03-16 17:56:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 484 bytes |
コンパイル時間 | 747 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 122,564 KB |
最終ジャッジ日時 | 2024-09-24 18:23:53 |
合計ジャッジ時間 | 7,521 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 122 ms
86,968 KB |
testcase_02 | WA | - |
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 | 117 ms
85,868 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 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
N = int(input()) A = list(map(int,input().split())) C = 10 ** 6 + 1 dat = [0] * C for a in A: dat[a] += 1 era = [0] * C for i in range(2,C): if era[i] == 0: for j in range(2 * i,C,i): era[j] = 1 for j in range((C-1) // i,0,-1): dat[j] += dat[i * j] Max = [0] * (N + 1) for i in range(1,C): Max[dat[i]] = i """ for i in range(N,0,-1): Max[i-1] = max(Max[i-1],Max[i]) """ for k in range(N): print(Max[N - k]) #print(dat[:30])