結果
| 問題 | No.1351 Sum of GCD Equals LCM |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-16 12:20:59 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 319 bytes |
| 記録 | |
| コンパイル時間 | 1,113 ms |
| コンパイル使用メモリ | 213,492 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-06-16 20:33:59 |
| 合計ジャッジ時間 | 7,794 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 50 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
void print(std::vector<int> v){
for(int i=0;i<v.size();i++){
if(i)cout<<' ';
cout<<v[i];
}cout<<endl;
}
int main(){
long long inf=10000000000000000;
int n;cin>>n;
vector<int> res(n);
for(int i=0;i<n;i++)res[i]=inf-i;
print(res);
}