結果
問題 | No.1730 GCD on Blackboard in yukicoder |
ユーザー | ytft |
提出日時 | 2021-12-28 17:02:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 509 bytes |
コンパイル時間 | 1,854 ms |
コンパイル使用メモリ | 171,408 KB |
実行使用メモリ | 20,388 KB |
最終ジャッジ日時 | 2024-10-02 09:52:51 |
合計ジャッジ時間 | 12,306 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 88 ms
6,816 KB |
testcase_03 | AC | 167 ms
6,816 KB |
testcase_04 | AC | 171 ms
6,816 KB |
testcase_05 | AC | 170 ms
6,820 KB |
testcase_06 | AC | 164 ms
6,816 KB |
testcase_07 | AC | 168 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 87 ms
6,820 KB |
testcase_10 | AC | 122 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N,temp; multiset<int> A; cin>>N; int ans[N]; fill(ans,ans+N,0); for(int i=0;i<N;++i){ cin>>temp; A.insert(temp); } for(int i=1;i<=*A.rbegin();++i){ temp=0; for(int j=i;j<=*A.rbegin();j+=i){ temp+=A.count(j); } ans[N-temp]=i; } cout<<ans[0]<<endl; for(int i=1;i<N;++i){ ans[i]=max(ans[i],ans[i-1]); cout<<ans[i]<<endl; } }