結果
問題 | No.3060 サンプルケース至上主義 |
ユーザー | wakapaijazz |
提出日時 | 2020-10-01 02:24:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 552 bytes |
コンパイル時間 | 2,424 ms |
コンパイル使用メモリ | 214,476 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 17:40:58 |
合計ジャッジ時間 | 2,466 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ map<string, string> mp; mp["0"] = "Nothing"; mp["3.14159265"] = "pi"; mp["1112345678999+X"] = "九蓮宝燈"; mp["19m19p19s東南西北白發中+Y"] = "Thirteen Orphans"; mp["くぁwせdrftgyふじこlp"] = "さmpぇ"; vector<int> ans = {3, 4, 4, 3, 6, 2, 2}; string s; while(cin >> s){ if(mp[s] == ""){ cout << s.size() << endl; }else{ cout << mp[s] << endl; } } return 0; }