結果

問題 No.2410 Nine Numbers
ユーザー tnakao0123tnakao0123
提出日時 2023-08-14 15:57:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 40,960 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-05-02 04:03:17
合計ジャッジ時間 728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2410.cc:  No.2410 Nine Numbers - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int N = 9;

/* typedef */

/* global variables */

int as[N];

/* subroutines */

/* main */

int main() {
  as[0] = 1;
  for (int i = 1; i < N; i++) as[i] = as[i - 1] * 3;

  for (int i = 0; i < N; i++)
    printf("%d%c", as[i], (i + 1 < N) ? ' ' : '\n');

  return 0;
}
0