結果

問題 No.3060 サンプルケース至上主義
ユーザー wakapaijazzwakapaijazz
提出日時 2020-10-01 02:24:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 211,076 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-20 22:54:25
合計ジャッジ時間 2,576 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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;
}
0