結果
| 問題 |
No.8060 サンプルケース至上主義
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-01 02:24:19 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 552 bytes |
| コンパイル時間 | 2,122 ms |
| コンパイル使用メモリ | 204,920 KB |
| 最終ジャッジ日時 | 2025-01-14 23:45:01 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 WA * 1 |
ソースコード
#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;
}