結果

問題 No.1156 Nada Picnic 2
ユーザー ooooobaoooooba
提出日時 2021-06-20 15:33:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 988 ms
コンパイル使用メモリ 114,412 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-05 01:25:57
合計ジャッジ時間 2,200 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iomanip>
#include <iostream>
#include <numeric>
#include <optional>
#include <queue>
#include <set>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>

using namespace std;

int main() {
    int32_t n;
    cin >> n;
    int32_t ans;
    if (n == 1)
        ans = 1231;
    else if (n == 2)
        ans = 12345;
    else
        ans = 123423;
    cout << ans << endl;
    return 0;
}
0