結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 27 ms
10,624 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 26 ms
10,624 KB
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 138 ms
16,128 KB
testcase_27 AC 50 ms
12,544 KB
testcase_28 AC 853 ms
28,116 KB
testcase_29 AC 946 ms
28,856 KB
testcase_30 AC 949 ms
29,116 KB
testcase_31 AC 566 ms
23,992 KB
testcase_32 AC 714 ms
26,292 KB
testcase_33 AC 41 ms
11,904 KB
testcase_34 AC 675 ms
25,908 KB
testcase_35 AC 320 ms
20,324 KB
testcase_36 AC 363 ms
21,228 KB
testcase_37 AC 916 ms
29,060 KB
testcase_38 AC 546 ms
24,204 KB
testcase_39 AC 59 ms
13,056 KB
testcase_40 AC 127 ms
15,744 KB
testcase_41 AC 442 ms
22,644 KB
testcase_42 AC 30 ms
11,008 KB
testcase_43 AC 60 ms
13,184 KB
testcase_44 AC 555 ms
24,228 KB
testcase_45 AC 126 ms
15,744 KB
testcase_46 AC 27 ms
10,624 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