結果

問題 No.8064 う し た ぷ に き あ く ん 笑
コンテスト
ユーザー tempura_pp
提出日時 2020-04-01 22:26:29
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 1,059 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 701 ms
コンパイル使用メモリ 85,248 KB
実行使用メモリ 391,216 KB
最終ジャッジ日時 2026-03-15 05:58:48
合計ジャッジ時間 38,213 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22 WA * 15 TLE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

s = input()
ans = ""
for c in s : 
    if c =='a' : ans += 'う し '
    if c =='b' : ans += 'う あ '
    if c =='c' : ans += 'ん 笑 '
    if c =='d' : ans += 'た ぷ '
    if c =='e' : ans += 'く ん '
    if c =='f' : ans += 'ぷ に '
    if c =='g' : ans += 'し き '
    if c =='h' : ans += 'あ く '
    if c =='i' : ans += 'う く '
    if c =='j' : ans += 'あ 笑 '
    if c =='k' : ans += 'う ん '
    if c =='l' : ans += 'し ぷ '
    if c =='m' : ans += 'う き '
    if c =='n' : ans += 'く ん '
    if c =='o' : ans += 'う 笑 '
    if c =='p' : ans += 'に き '
    if c =='q' : ans += 'ぷ 笑 '
    if c =='r' : ans += 'た き '
    if c =='s' : ans += 'た ん '
    if c =='t' : ans += 'し あ '
    if c =='u' : ans += 'し ん '
    if c =='v' : ans += 'う う '
    if c =='w' : ans += 'う た '
    if c =='x' : ans += 'き 笑 '
    if c =='y' : ans += 'に く '
    if c =='z' : ans += '笑 笑 '
print(ans)
0