結果
問題 | No.8064 う し た ぷ に き あ く ん 笑 |
ユーザー | leaf_1415 |
提出日時 | 2020-04-01 23:03:12 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 1,097 bytes |
コンパイル時間 | 1,218 ms |
コンパイル使用メモリ | 80,296 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 12:28:42 |
合計ジャッジ時間 | 3,176 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 47 |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) using namespace std; typedef pair<llint, llint> P; string s; string t[] = { "う し", "う あ", "ん 笑", "た ぷ", "く ん", "ぷ に", "し き", "あ く", "う く", "あ 笑", "う ん", "し ぷ", "う き", "く 笑", "う 笑", "に き", "ぷ 笑", "た き", "た ん", "し あ", "し ん", "う う", "う た", "き 笑", "に く", "笑 笑" }; int main(void) { cin >> s; for(int i = 0; i < s.size(); i++){ cout << t[s[i]-'a'] << " "; } cout << endl; return 0; }