結果
| 問題 |
No.8064 う し た ぷ に き あ く ん 笑
|
| コンテスト | |
| ユーザー |
hir355
|
| 提出日時 | 2020-04-01 23:15:41 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 54 ms / 2,000 ms |
| コード長 | 554 bytes |
| コンパイル時間 | 89 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 13,428 KB |
| 最終ジャッジ日時 | 2024-06-27 12:39:29 |
| 合計ジャッジ時間 | 3,545 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 47 |
ソースコード
l = ['う し', 'う あ', 'ん 笑', 'た ぷ', 'く ん', 'ぷ に', 'し き', 'あ く', 'う く', 'あ 笑', 'う ん', 'し ぷ', 'う き',
'く 笑', 'う 笑', 'に き', 'ぷ 笑', 'た き', 'た ん', 'し あ', 'し ん', 'う う', 'う た', 'き 笑', 'に く', '笑 笑']
# s = input().split()
# for i in range(0, len(s), 2):
# print(chr(l.index(s[i] + s[i + 1]) + 97), end='')
s = input()
ans = []
for c in s:
ans.append(l[ord(c) - 97])
print(' '.join(ans) + ' ')
hir355