結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー Ricky_ponRicky_pon
提出日時 2023-07-14 11:50:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 397 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 282,672 KB
最終ジャッジ日時 2024-09-15 20:54:33
合計ジャッジ時間 7,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,508 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 37 ms
51,328 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 36 ms
51,328 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 37 ms
51,328 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 38 ms
51,840 KB
testcase_16 AC 39 ms
51,328 KB
testcase_17 AC 37 ms
51,328 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 38 ms
51,840 KB
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 38 ms
51,584 KB
testcase_23 AC 38 ms
51,840 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 37 ms
51,200 KB
testcase_26 AC 900 ms
259,328 KB
testcase_27 AC 102 ms
78,464 KB
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 #

a = ['うし', 'うあ', 'ん笑', 'たぷ', 'くん', 'ぷに', 'しき', 'あく', 'うく', 'あ笑', 'うん', 'しぷ', 'うき', 'く笑', 'う笑', 'にき', 'ぷ笑', 'たき', 'たん', 'しあ', 'しん', 'うう', 'うた', 'き笑', 'にく', '笑笑']
s = input()
ans = ""
for i in range(len(s)):
    id = ord(s[i]) - ord('a')
    ans += a[id][0] + ' ' + a[id][1] + ' '
print(ans)
0