結果

問題 No.2410 Nine Numbers
ユーザー 高翊恩高翊恩
提出日時 2023-08-30 08:57:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 1,667 ms
コンパイル使用メモリ 162,324 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-30 08:57:23
合計ジャッジ時間 2,284 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long
typedef pair<int, int> pii;

int32_t main() {
    cin.tie(0) -> sync_with_stdio(false);
    cout << "1 3 9 27 81 243 729 2187 6561" << endl;
    return 0;
}
0