結果
| 問題 |
No.3159 Just Answer 10 Integers!
|
| コンテスト | |
| ユーザー |
北杜
|
| 提出日時 | 2025-05-23 20:30:56 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 508 bytes |
| コンパイル時間 | 3,057 ms |
| コンパイル使用メモリ | 278,152 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-05-23 20:31:00 |
| 合計ジャッジ時間 | 4,387 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 WA * 7 |
ソースコード
//#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
#define all(a) (a).begin(), (a).end()
using ll = long long;
const ll INF32 = 2e9;
const ll INF64 = 4e18;
void printYN(bool ok){
if(ok)cout << "Yes" << endl;
else cout << "No" << endl;
return;
}
// 未証明.
vector<int> ans = {2, 3, 6, 12, 24, 48, 96, 192, 384, 768};
int main() {
int N;
cin >> N;
rep(i, N)cout << ans[i] << (i==N-1?"\n":" ");
return 0;
}
北杜