結果

問題 No.3060 サンプルケース至上主義
ユーザー kya_skikya_ski
提出日時 2020-04-20 21:49:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 163,444 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 00:55:16
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    string s;
    cin >> s;
    
    string ans = "ans";
    if (s == "0") ans = "Nothing";
    else if (s == "3.14159265") ans = "pi";
    else if (s == "1112345678999+X") ans = "九蓮宝燈\nThirteen Orphans";
    else if (s == "All") ans = "3\n4\n4\n3\n6\n2\n2\n";
    else ans = "さmpぇ";
    
    cout << ans << '\n';
    
    return 0;
}
0