結果
問題 |
No.3159 Just Answer 10 Integers!
|
ユーザー |
|
提出日時 | 2025-05-04 01:25:32 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 342 bytes |
コンパイル時間 | 2,966 ms |
コンパイル使用メモリ | 276,764 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2025-05-23 18:30:13 |
合計ジャッジ時間 | 4,506 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 1 WA * 8 |
ソースコード
// AC only n=10 #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); vector<long long> p={2,3,5,7,11,13,17,19,23,1}; long long v=1; for(auto &nx : p){v*=nx;} int n; cin >> n; for(int i=0;i<10;i++){ if(i){cout << " ";} cout << v/p[i]; }cout << "\n"; return 0; }