結果

問題 No.432 占い(Easy)
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-10-14 22:36:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 4,356 ms
コンパイル使用メモリ 112,100 KB
実行使用メモリ 29,792 KB
最終ジャッジ日時 2024-11-22 07:27:26
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,656 KB
testcase_01 AC 23 ms
21,556 KB
testcase_02 AC 24 ms
23,392 KB
testcase_03 AC 24 ms
23,404 KB
testcase_04 AC 25 ms
23,984 KB
testcase_05 AC 23 ms
21,816 KB
testcase_06 AC 24 ms
23,764 KB
testcase_07 AC 24 ms
23,768 KB
testcase_08 AC 24 ms
25,688 KB
testcase_09 AC 26 ms
23,660 KB
testcase_10 AC 25 ms
25,564 KB
testcase_11 AC 28 ms
25,956 KB
testcase_12 AC 61 ms
27,860 KB
testcase_13 AC 61 ms
27,860 KB
testcase_14 AC 28 ms
25,696 KB
testcase_15 AC 24 ms
23,784 KB
testcase_16 AC 24 ms
23,892 KB
testcase_17 AC 58 ms
27,864 KB
testcase_18 AC 43 ms
29,792 KB
testcase_19 AC 36 ms
27,632 KB
testcase_20 AC 31 ms
27,740 KB
testcase_21 AC 30 ms
25,944 KB
testcase_22 AC 25 ms
23,520 KB
testcase_23 AC 25 ms
23,852 KB
testcase_24 AC 27 ms
23,860 KB
testcase_25 AC 26 ms
23,600 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.Text;

public class Program
{
	public static void Main()
	{
		int T = int.Parse(Console.ReadLine());
		for (int i = 0; i < T; i++)
		{
			var S = Console.ReadLine();
			while (S.Length > 1)
			{
				var sb = new StringBuilder();
				for (int j = 0; j < S.Length - 1; j++)
				{
					int temp = S[j] - '0' + S[j + 1] - '0';
					if (temp > 9)
					{
						temp = 1 + temp % 10;
					}
					sb.Append(temp.ToString());
				}
				S = sb.ToString();
			}
			Console.WriteLine(S);
		}
	}
}
0