結果

問題 No.423 ハムスター語初級(数詞)
ユーザー shimonohnishishimonohnishi
提出日時 2024-11-04 14:28:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 53,680 KB
最終ジャッジ日時 2024-11-04 14:28:23
合計ジャッジ時間 1,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,356 KB
testcase_01 AC 37 ms
52,832 KB
testcase_02 AC 37 ms
53,620 KB
testcase_03 AC 34 ms
53,016 KB
testcase_04 AC 38 ms
53,680 KB
testcase_05 AC 37 ms
53,288 KB
testcase_06 AC 35 ms
53,564 KB
testcase_07 AC 35 ms
52,680 KB
testcase_08 AC 34 ms
52,648 KB
testcase_09 AC 34 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

N = []
i = 1
while i <= len(S):
    if S[-i] == "u":
        i += 4
        N.append(1)
    else:
        i += 3
        N.append(0)

ans = 0
for n in N[::-1]:
    ans *= 2
    ans += n
# print(ans)

ans *= 2
A = bin(ans)[2:]
for a in A:
    if a == "1":
        print("hamu", end="")
    else:
        print("ham", end="")
print()
0