結果

問題 No.3064 う し た ぷ に き あ く ん 笑
ユーザー RuteRute
提出日時 2020-04-01 23:39:52
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,049 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 10,952 KB
実行使用メモリ 30,924 KB
最終ジャッジ日時 2023-09-09 20:19:16
合計ジャッジ時間 6,855 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,012 KB
testcase_01 AC 15 ms
8,000 KB
testcase_02 AC 15 ms
7,936 KB
testcase_03 AC 15 ms
8,024 KB
testcase_04 AC 16 ms
8,012 KB
testcase_05 AC 15 ms
8,028 KB
testcase_06 AC 16 ms
7,932 KB
testcase_07 AC 16 ms
7,996 KB
testcase_08 AC 16 ms
7,936 KB
testcase_09 AC 15 ms
7,996 KB
testcase_10 AC 15 ms
8,008 KB
testcase_11 AC 15 ms
8,008 KB
testcase_12 AC 15 ms
8,016 KB
testcase_13 AC 14 ms
8,040 KB
testcase_14 AC 15 ms
7,960 KB
testcase_15 AC 15 ms
8,020 KB
testcase_16 AC 15 ms
7,960 KB
testcase_17 AC 15 ms
8,008 KB
testcase_18 AC 14 ms
8,012 KB
testcase_19 AC 14 ms
8,016 KB
testcase_20 AC 15 ms
8,024 KB
testcase_21 AC 14 ms
7,992 KB
testcase_22 AC 14 ms
8,028 KB
testcase_23 AC 14 ms
7,964 KB
testcase_24 AC 14 ms
7,996 KB
testcase_25 AC 15 ms
8,008 KB
testcase_26 AC 1,462 ms
14,040 KB
testcase_27 AC 80 ms
9,956 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 #

S = input().split()
ans = ""
ans_2 = ""
ans_3 = ""
for i in range(len(S)):
    ans += S[i]

A = ans.replace("a","うし")
B = A.replace("b","う あ")
C = B.replace("c","ん 笑")
D = C.replace("d","た ぷ")
E = D.replace("e","く ん")
F = E.replace("f","ぷ に")
G = F.replace("g","し き")
H = G.replace("h","あ く")
I = H.replace("i","う く")
J = I.replace("j","あ 笑")
K = J.replace("k","う ん")
L = K.replace("l","し ぷ")
M = L.replace("m","う き")
N = M.replace("n","く 笑")
O = N.replace("o","う 笑")
P = O.replace("p","に き")
Q = P.replace("q","ぷ 笑")
R = Q.replace("r","た き")
S = R.replace("s","た ん")
T = S.replace("t","し あ")
U = T.replace("u","し ん")
V = U.replace("v","う う")
W = V.replace("w","う た")
X = W.replace("x","き 笑")
Y = X.replace("y","に く")
Z = Y.replace("z","笑 笑")
second = Z.split()
for i in range(len(second)):
    ans_2 += second[i]
for j in range(len(ans_2)):
    ans_3 += ans_2[j]
    ans_3 += " "
print(ans_3)
0