結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー FuyuruFuyuru
提出日時 2023-10-17 14:20:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 994 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 11,748 KB
実行使用メモリ 31,364 KB
最終ジャッジ日時 2023-10-17 14:21:01
合計ジャッジ時間 11,975 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,000 KB
testcase_01 AC 28 ms
10,000 KB
testcase_02 AC 31 ms
10,000 KB
testcase_03 AC 28 ms
10,000 KB
testcase_04 AC 29 ms
10,000 KB
testcase_05 AC 29 ms
10,000 KB
testcase_06 AC 28 ms
10,000 KB
testcase_07 AC 29 ms
10,000 KB
testcase_08 AC 28 ms
10,000 KB
testcase_09 AC 27 ms
10,000 KB
testcase_10 AC 27 ms
10,000 KB
testcase_11 AC 28 ms
10,000 KB
testcase_12 AC 27 ms
10,000 KB
testcase_13 AC 28 ms
10,000 KB
testcase_14 AC 28 ms
10,000 KB
testcase_15 AC 27 ms
10,000 KB
testcase_16 AC 27 ms
10,000 KB
testcase_17 AC 28 ms
10,000 KB
testcase_18 AC 28 ms
10,000 KB
testcase_19 AC 28 ms
10,000 KB
testcase_20 AC 27 ms
10,000 KB
testcase_21 AC 27 ms
10,000 KB
testcase_22 AC 27 ms
10,000 KB
testcase_23 AC 28 ms
10,000 KB
testcase_24 AC 27 ms
10,000 KB
testcase_25 AC 28 ms
10,000 KB
testcase_26 AC 137 ms
16,160 KB
testcase_27 AC 49 ms
12,136 KB
testcase_28 AC 910 ms
30,136 KB
testcase_29 AC 962 ms
31,064 KB
testcase_30 AC 994 ms
31,364 KB
testcase_31 AC 543 ms
25,508 KB
testcase_32 AC 745 ms
28,196 KB
testcase_33 AC 41 ms
11,420 KB
testcase_34 AC 702 ms
27,600 KB
testcase_35 AC 321 ms
21,156 KB
testcase_36 AC 372 ms
22,308 KB
testcase_37 AC 984 ms
31,272 KB
testcase_38 AC 562 ms
25,704 KB
testcase_39 AC 60 ms
12,864 KB
testcase_40 AC 130 ms
15,904 KB
testcase_41 AC 450 ms
23,688 KB
testcase_42 AC 29 ms
10,504 KB
testcase_43 AC 60 ms
12,748 KB
testcase_44 AC 592 ms
25,748 KB
testcase_45 AC 125 ms
15,808 KB
testcase_46 AC 28 ms
10,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = {'a':'うし','b':'うあ','c':'ん笑','d':'たぷ','e':'くん','f':'ぷに','g':'しき','h':'あく','i':'うく','j':'あ笑','k':'うん','l':'しぷ','m':'うき','n':'く笑','o':'う笑','p':'にき','q':'ぷ笑','r':'たき','s':'たん','t':'しあ','u':'しん','v':'うう','w':'うた','x':'き笑','y':'にく','z':'笑笑'}
res = []
S = list(input())
while S:
    tmp = S.pop(0)
    res += list(d[tmp])
print(*res,sep=' ',end=' ')
0