結果

問題 No.1155 Nada Picnic
ユーザー ksukegamesksukegames
提出日時 2022-08-17 10:53:55
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 139,912 KB
実行使用メモリ 6,812 KB
最終ジャッジ日時 2024-04-15 02:18:03
合計ジャッジ時間 1,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <utility>
#include <tuple>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <deque>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#include <cctype>
#include <cassert>
#include <functional>
#include <numeric>
#include <type_traits>
using namespace std;
#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define coutf(f) cout << fixed << setprecision(f)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()

int main() {
    int n;
    cin >> n;
    string ans;
    if (n == 1) {
        ans = "Shiitakerando";
    } else if (n == 2) {
        ans = "Otsukakokusaibijutsukan";
    } else {
        ans = "Spring-8";
    }
    cout << ans << endl;
	return 0;
}
0