結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | bayashiko_r |
提出日時 | 2018-11-13 22:26:55 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 21 ms / 2,000 ms |
コード長 | 784 bytes |
コンパイル時間 | 5,708 ms |
コンパイル使用メモリ | 102,400 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-06-06 19:47:07 |
合計ジャッジ時間 | 1,638 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
17,792 KB |
testcase_01 | AC | 21 ms
17,536 KB |
testcase_02 | AC | 19 ms
17,792 KB |
testcase_03 | AC | 20 ms
17,664 KB |
testcase_04 | AC | 20 ms
17,920 KB |
testcase_05 | AC | 20 ms
17,792 KB |
testcase_06 | AC | 19 ms
17,920 KB |
testcase_07 | AC | 19 ms
17,792 KB |
testcase_08 | AC | 20 ms
17,664 KB |
testcase_09 | AC | 20 ms
17,920 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class Program { static void Main(string[] args) { //入力 string s = Console.ReadLine(); //文字列の中から、hamuとhamを数字に置き換えていく string s_after = s.Replace("hamu", "1"); s_after = s_after.Replace("ham", "0"); //2進数→10進数に変換する int t_decimal = Convert.ToInt32(s_after, 2); //2倍する t_decimal *= 2; //2進数に変換する string ans = Convert.ToString(t_decimal, 2); //文字列の中から、0と1をhamu/hamに置き換えていく string ans_after = ans.Replace("1", "hamu"); ans_after = ans_after.Replace("0", "ham"); //出力 Console.WriteLine(ans_after); } }