結果

問題 No.1156 Nada Picnic 2
ユーザー ooooobaoooooba
提出日時 2021-06-20 15:33:34
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 1,185 ms
コンパイル使用メモリ 111,568 KB
最終ジャッジ日時 2025-01-22 10:30:05
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 3
権限があれば一括ダウンロードができます

ソースコード

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