結果
問題 |
No.8064 う し た ぷ に き あ く ん 笑
|
ユーザー |
![]() |
提出日時 | 2020-08-10 01:31:37 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 585 bytes |
コンパイル時間 | 2,250 ms |
コンパイル使用メモリ | 194,120 KB |
最終ジャッジ日時 | 2025-01-12 19:32:04 |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 47 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string S; cin >> S; string G[26]={"う し ","う あ ","ん 笑 ","た ぷ ","く ん ","ぷ に ","し き ","あ く ","う く ","あ 笑 ","う ん ","し ぷ ","う き ","く 笑 ","う 笑 ","に き ","ぷ 笑 ","た き ","た ん ","し あ ","し ん ","う う ","う た ","き 笑 ","に く ","笑 笑 "}; for(auto v:S)cout << G[v-'a']; cout << endl; }