結果

問題 No.432 占い(Easy)
ユーザー hermione17hermione17
提出日時 2016-10-14 22:40:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 6,858 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 42,712 KB
最終ジャッジ日時 2024-11-22 07:41:13
合計ジャッジ時間 8,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,480 KB
testcase_01 AC 134 ms
41,116 KB
testcase_02 AC 131 ms
41,080 KB
testcase_03 AC 135 ms
40,984 KB
testcase_04 AC 123 ms
40,456 KB
testcase_05 AC 133 ms
41,096 KB
testcase_06 AC 147 ms
41,116 KB
testcase_07 AC 138 ms
41,416 KB
testcase_08 AC 130 ms
41,440 KB
testcase_09 AC 217 ms
42,712 KB
testcase_10 AC 147 ms
41,108 KB
testcase_11 AC 135 ms
41,048 KB
testcase_12 AC 127 ms
40,228 KB
testcase_13 AC 129 ms
39,916 KB
testcase_14 AC 137 ms
41,488 KB
testcase_15 AC 136 ms
41,400 KB
testcase_16 AC 128 ms
41,192 KB
testcase_17 AC 127 ms
40,036 KB
testcase_18 AC 160 ms
41,388 KB
testcase_19 AC 138 ms
40,808 KB
testcase_20 AC 136 ms
41,284 KB
testcase_21 AC 140 ms
41,104 KB
testcase_22 AC 160 ms
41,276 KB
testcase_23 AC 177 ms
41,468 KB
testcase_24 AC 213 ms
42,600 KB
testcase_25 AC 219 ms
42,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y432 {
	Y432() throws Exception {
		Scanner in = new Scanner(System.in);
		PrintStream out = new PrintStream(System.out);
		
		int t = in.nextInt();
		
		for (int tt = 0; tt < t; tt++) {
			char[] s = in.next().toCharArray();
			int n = s.length;
			for (int i=n; i>1; i--) {
				for (int j=0; j < i - 1; j++) {
					int g = (int)s[j] - (int)'0' + (int)s[j+1] - (int)'0';
					g = g / 10 + g % 10;
					s[j] = (char)(g + '0');
				}
			}
			out.println(s[0]);
		}

	}

	public static void main(String argv[]) throws Exception {
		new Y432();
	}
}
0