結果

問題 No.423 ハムスター語初級(数詞)
ユーザー tomatonosuke
提出日時 2016-09-23 00:05:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-17 15:15:30
合計ジャッジ時間 958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

targ = input()
temp = ""
num = ""
for t in range(len(targ)):
    temp += targ[t]
    if temp == "hamh":
        temp = "h"
        num += '0'
    elif temp == "hamu":
        temp = ""
        num += '1'
    elif temp == "ham" and t == len(targ) - 1:
        num += '0'
print(num)
if num == '0':
    print("ham")
else:    
    temp = bin(int(num,2) * 2)[2:]
    ans = ""
    for t in temp:
        if t == '0':
            ans += "ham"
        else:
            ans += "hamu"
    print(ans)
0