結果
問題 | No.8060 サンプルケース至上主義 |
ユーザー | 👑 Nachia |
提出日時 | 2020-09-28 14:42:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 619 bytes |
コンパイル時間 | 1,843 ms |
コンパイル使用メモリ | 177,852 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 03:51:07 |
合計ジャッジ時間 | 2,389 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using LL = long long; using ULL = unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) map<string,string> S={ {"0\n","Nothing\n"}, {"3.14159265\n","pi\n"}, {"1112345678999+X\n19m19p19s東南西北白發中+Y\n","九蓮宝燈\nThirteen Orphans\n"}, {"All your base are belong to us.\n","3\n4\n4\n3\n6\n2\n2\n"}, {"くぁwせdrftgyふじこlp\n","さmpぇ\n"} }; int main() { string inputstring; while(true){ string buf; getline(cin,buf); if(cin.eof()) break; inputstring += buf+"\n"; } cout<<S[inputstring]<<endl; return 0; }