結果

問題 No.423 ハムスター語初級(数詞)
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-09-22 22:48:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 104,064 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-04-28 19:49:15
合計ジャッジ時間 1,674 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,944 KB
testcase_01 AC 29 ms
18,944 KB
testcase_02 AC 28 ms
18,688 KB
testcase_03 AC 29 ms
18,944 KB
testcase_04 AC 28 ms
18,944 KB
testcase_05 AC 29 ms
18,560 KB
testcase_06 AC 28 ms
18,688 KB
testcase_07 AC 29 ms
18,816 KB
testcase_08 AC 29 ms
18,944 KB
testcase_09 AC 29 ms
18,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

public class Program
{
	public static void Main()
	{
		var line = Console.ReadLine();
		var sb = new StringBuilder();
		while (!string.IsNullOrEmpty(line))
		{
			int i;
			if (line.StartsWith("hamu"))
			{
				sb.Append(1);
				i = 4;
			}
			else
			{
				sb.Append(0);
				i = 3;
			}
			line = line.Substring(i, line.Length - i);
		}
		var chars = sb.ToString().ToCharArray();
		int num = 0;
		foreach (var ch in chars)
		{
			num += ch - '0';
			num <<= 1;
		}
		var bin = Convert.ToString(num, 2);
		Console.WriteLine(bin.Replace("1", "hamu").Replace("0", "ham"));
	}
}
0