結果
問題 | No.3060 サンプルケース至上主義 |
ユーザー | 👑 Nachia |
提出日時 | 2020-09-28 14:43:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 613 bytes |
コンパイル時間 | 2,182 ms |
コンパイル使用メモリ | 179,508 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 03:51:37 |
合計ジャッジ時間 | 2,320 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
ソースコード
#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]; return 0; }