結果

問題 No.8060 サンプルケース至上主義
ユーザー yasunori
提出日時 2025-02-20 00:05:43
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 3,461 ms
コンパイル使用メモリ 276,548 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-02-20 00:05:47
合計ジャッジ時間 4,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    string s; cin >> s;
    if(s[0] == '0') cout << "Nothing\n";
    else if(s[0] == '3') cout << "pi\n";
    else if(s[0] == '1') {
        u8string t = u8"九蓮宝燈\nThirteen Orphans\n";
        cout << string(t.begin(), t.end());
    }
    else if(s[0] == 'A') {
        cout << "3\n4\n4\n3\n6\n2\n2\n";
    }
    else {
        u8string t = u8"さmpぇ\n";
        cout << string(t.begin(), t.end());
    }
    return 0;
}
0