結果

問題 No.8064 う し た ぷ に き あ く ん 笑
ユーザー a01sa01to
提出日時 2024-07-15 00:12:56
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 3,597 ms
コンパイル使用メモリ 250,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-15 00:13:03
合計ジャッジ時間 6,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  vector<string> ushitapunikiakunnwara = { "う し ", "う あ ", "ん 笑 ", "た ぷ ", "く ん ", "ぷ に ", "し き ", "あ く ", "う く ", "あ 笑 ", "う ん ", "し ぷ ", "う き ", "く 笑 ", "う 笑 ", "に き ", "ぷ 笑 ", "た き ", "た ん ", "し あ ", "し ん ", "う う ", "う た ", "き 笑 ", "に く ", "笑 笑 " };
  string s;
  cin >> s;
  for (char c : s) cout << ushitapunikiakunnwara[c - 'a'];
  cout << endl;
  return 0;
}
0