結果
| 問題 |
No.3159 Just Answer 10 Integers!
|
| コンテスト | |
| ユーザー |
PyonPyon
|
| 提出日時 | 2025-05-23 20:01:22 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,066 bytes |
| コンパイル時間 | 5,192 ms |
| コンパイル使用メモリ | 332,636 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2025-05-23 20:01:29 |
| 合計ジャッジ時間 | 6,612 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 1 WA * 8 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef long double ld;
#define sz(c) ((ll)(c).size())
#define ALL(x) x.begin(),x.end()
#define LB(A,x) (ll)(lower_bound(ALL(A),x)-A.begin())
#define UB(A,x) (ll)(upper_bound(ALL(A),x)-A.begin())
#define BS(A,x) binary_search(ALL(A),x)
#define rep(i,a,b) for(int i=a;i<b;i++)
template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; }
using vi = vector<int>;
using vvi = vector<vi>;
using li =vector<ll>;
using lli=vector<li>;
const long long mod=998244353;
int main() {
int n;cin>>n;
int p=2;
int r=3;
vi A(10);
A[0]=p*p*p*p*p*p*p*p*p;
A[1]=p*p*p*p*p*p*p*p*r;
A[2]=p*p*p*p*p*p*p*r*r;
A[3]=p*p*p*p*p*p*r*r*r;
A[4]=p*p*p*p*p*r*r*r*r;
A[5]=p*p*p*p*r*r*r*r*r;
A[6]=p*p*p*r*r*r*r*r*r;
A[7]=p*p*r*r*r*r*r*r*r;
A[8]=p*r*r*r*r*r*r*r*r;
A[9]=r*r*r*r*r*r*r*r*r;
rep(i,0,n){
cout<<A[i]<<" ";
}
}
PyonPyon