結果

問題 No.423 ハムスター語初級(数詞)
ユーザー takaaaa6takaaaa6
提出日時 2022-03-09 00:09:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 476 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-26 18:58:55
合計ジャッジ時間 1,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 RE -
testcase_04 AC 30 ms
10,624 KB
testcase_05 RE -
testcase_06 AC 30 ms
10,624 KB
testcase_07 RE -
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
l=list()

for i in range(len(n)):
    if n[i] == 'm' and i+1 <= len(n):
        if n[i+1] == 'u':
            l.append(1)
        elif n[i+1] == 'h':
            l.append(0)

sum=0
for j in range(len(l)):
    sum += l[j] * 2**(len(l)-1-j)
sum *= 2

amari=[]
while sum != 0:
    amari.append(sum%2)
    sum //= 2
amari.reverse()

hm=[]
for k in range(len(amari)):
    if amari[k] == 0:
        hm.append("ham")
    else:
        hm.append("hamu")

print("".join(hm))
0