結果

問題 No.8064 う し た ぷ に き あ く ん 笑
コンテスト
ユーザー 👑 AngrySadEight
提出日時 2026-03-14 03:40:03
言語 Python3
(3.14.3 + numpy 2.4.2 + scipy 1.17.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 1,417 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 572 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 19,672 KB
最終ジャッジ日時 2026-03-14 03:40:16
合計ジャッジ時間 12,242 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

S = str(input())
ans = []
for id, s in enumerate(S):
    if s == 'a':
        ans.append('う し')
    elif s == 'b':
        ans.append('う あ')
    elif s == 'c':
        ans.append('ん 笑')
    elif s == 'd':
        ans.append('た ぷ')
    elif s == 'e':
        ans.append('く ん')
    elif s == 'f':
        ans.append('ぷ に')
    elif s == 'g':
        ans.append('し き')
    elif s == 'h':
        ans.append('あ く')
    elif s == 'i':
        ans.append('う く')
    elif s == 'j':
        ans.append('あ 笑')
    elif s == 'k':
        ans.append('う ん')
    elif s == 'l':
        ans.append('し ぷ')
    elif s == 'm':
        ans.append('う き')
    elif s == 'n':
        ans.append('く 笑')
    elif s== 'o':
        ans.append('う 笑')
    elif s == 'p':
        ans.append('に き')
    elif s == 'q':
        ans.append('ぷ 笑')
    elif s== 'r':
        ans.append('た き')
    elif s == 's':
        ans.append('た ん')
    elif s == 't':
        ans.append('し あ')
    elif s == 'u':
        ans.append('し ん')
    elif s == 'v':
        ans.append('う う')
    elif s == 'w':
        ans.append('う た')
    elif s == 'x':
        ans.append('き 笑')
    elif s == 'y':
        ans.append('に く')
    elif s == 'z':
        ans.append('笑 笑')
    ans.append(' ')
print(*ans, sep='')
0