結果

問題 No.432 占い(Easy)
ユーザー naimonon77naimonon77
提出日時 2016-10-21 23:12:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 2,808 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-11-23 16:50:18
合計ジャッジ時間 7,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
39,984 KB
testcase_01 AC 131 ms
41,320 KB
testcase_02 AC 129 ms
40,856 KB
testcase_03 AC 131 ms
41,196 KB
testcase_04 AC 128 ms
41,392 KB
testcase_05 AC 129 ms
41,132 KB
testcase_06 AC 142 ms
41,168 KB
testcase_07 AC 125 ms
41,028 KB
testcase_08 AC 115 ms
39,872 KB
testcase_09 AC 212 ms
42,424 KB
testcase_10 AC 145 ms
41,068 KB
testcase_11 AC 120 ms
40,112 KB
testcase_12 AC 140 ms
41,092 KB
testcase_13 AC 137 ms
41,228 KB
testcase_14 AC 133 ms
41,120 KB
testcase_15 AC 124 ms
41,052 KB
testcase_16 AC 132 ms
41,044 KB
testcase_17 AC 145 ms
41,352 KB
testcase_18 AC 160 ms
40,892 KB
testcase_19 AC 134 ms
41,164 KB
testcase_20 AC 135 ms
41,144 KB
testcase_21 AC 134 ms
41,236 KB
testcase_22 AC 153 ms
41,328 KB
testcase_23 AC 167 ms
41,636 KB
testcase_24 AC 209 ms
42,496 KB
testcase_25 AC 214 ms
42,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
       	for (int loop = 0; loop < T; loop++) {
			char[] str = sc.next().toCharArray();
			int[] s = new int[str.length];
			for (int i = 0; i < str.length; i++) s[i] = str[i] - '0';
			int N = s.length;
			while (N > 1) {
				for (int i = 0; i < N - 1; i++) {
					s[i] = s[i] + s[i+1];
					if (s[i] >= 10) s[i] = 1 + s[i] % 10;
				}
				N--;
			}
			System.out.println(s[0]);
       	}
	}
}
0