結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー tempura_pptempura_pp
提出日時 2020-04-01 22:26:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,059 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 327,384 KB
最終ジャッジ日時 2024-06-27 11:37:30
合計ジャッジ時間 6,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,972 KB
testcase_02 AC 37 ms
52,968 KB
testcase_03 AC 37 ms
52,972 KB
testcase_04 AC 37 ms
53,036 KB
testcase_05 AC 37 ms
52,636 KB
testcase_06 AC 38 ms
53,392 KB
testcase_07 AC 38 ms
53,116 KB
testcase_08 AC 37 ms
52,824 KB
testcase_09 AC 37 ms
52,236 KB
testcase_10 AC 37 ms
52,440 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,944 KB
testcase_13 WA -
testcase_14 AC 38 ms
53,348 KB
testcase_15 AC 37 ms
52,172 KB
testcase_16 AC 38 ms
53,528 KB
testcase_17 AC 37 ms
51,940 KB
testcase_18 AC 37 ms
52,160 KB
testcase_19 AC 37 ms
52,928 KB
testcase_20 WA -
testcase_21 AC 37 ms
52,628 KB
testcase_22 AC 37 ms
52,200 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,436 KB
testcase_25 AC 38 ms
52,856 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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