結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー 👑 p-adicp-adic
提出日時 2022-08-23 17:37:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,916 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 199,556 KB
実行使用メモリ 17,080 KB
最終ジャッジ日時 2024-04-19 08:50:23
合計ジャッジ時間 8,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

using uint = unsigned int;
using ll = long long;

#define CIN( LL , A ) LL A; cin >> A 
#define GETLINE( A ) string A; getline( cin , A ) 
#define GETLINE_SEPARATE( A , SEPARATOR ) string A; getline( cin , A , SEPARATOR ) 
#define FOR_LL( VAR , INITIAL , FINAL_PLUS_ONE ) for( ll VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define FOR_ITR( ARRAY , ITR , END ) for( auto ITR = ARRAY .begin() , END = ARRAY .end() ; ITR != END ; ITR ++ ) 
#define REPEAT( HOW_MANY_TIMES ) FOR_LL( VARIABLE_FOR_REPEAT , 0 , HOW_MANY_TIMES ) 
#define RETURN( ANSWER ) cout << ( ANSWER ) << endl; return 0 
#define DOUBLE( PRECISION , ANSWER ) cout << fixed << setprecision( PRECISION ) << ( ANSWER ) << endl; return 0 
#define MIN( A , B ) A < B ? A : B;
#define MAX( A , B ) A < B ? B : A;
template <typename T> inline T Distance( const T& a , const T& b ){ return a < b ? b - a : a - b; }

int main(){
  GETLINE( S );
  string s[26] = {
    "う し " ,
    "う あ " ,
    "ん 笑 " ,
    "た ぷ " ,
    "く ん " ,
    "ぷ に " ,
    "し き " ,
    "あ く " ,
    "う く " ,
    "あ 笑 " ,
    "う ん " ,
    "し ぷ " ,
    "う き " ,
    "く 笑 " ,
    "う 笑 " ,
    "に き " ,
    "ぷ 笑 " ,
    "た き " ,
    "た ん " ,
    "し あ " ,
    "し ん " ,
    "う う " ,
    "う た " ,
    "き 笑 " ,
    "に く " ,
    "笑 笑 "
  };
  string c[26] = { "a" , "b" , "c" , "d" , "e" , "f" , "g" , "h" , "i" , "j" , "k" , "l" , "m" , "n" , "o" , "p" , "q" , "r" , "s" , "t" , "u" , "v" , "w" , "x" , "y" , "z" };
  while( S != "" ){
    FOR_LL( i , 0 , 26 ){
      string& si = s[i];
      ll size_si = si.size();
      if( S.substr( 0 , size_si ) == si ){
	cout << c[i];
	S = S.substr( size_si );
      }
    }
  }
  RETURN( "" );
}
0