結果

問題 No.432 占い(Easy)
ユーザー fal_rndfal_rnd
提出日時 2016-11-11 22:14:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 1,770 ms
コンパイル使用メモリ 75,332 KB
実行使用メモリ 55,028 KB
最終ジャッジ日時 2024-11-25 08:21:53
合計ジャッジ時間 5,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,536 KB
testcase_01 AC 103 ms
54,088 KB
testcase_02 AC 112 ms
52,520 KB
testcase_03 AC 108 ms
53,808 KB
testcase_04 AC 98 ms
54,016 KB
testcase_05 AC 102 ms
52,736 KB
testcase_06 AC 124 ms
53,676 KB
testcase_07 AC 114 ms
53,652 KB
testcase_08 AC 100 ms
52,820 KB
testcase_09 AC 191 ms
55,028 KB
testcase_10 AC 125 ms
53,800 KB
testcase_11 AC 103 ms
52,632 KB
testcase_12 AC 107 ms
52,924 KB
testcase_13 AC 123 ms
53,452 KB
testcase_14 AC 107 ms
52,944 KB
testcase_15 AC 112 ms
53,612 KB
testcase_16 AC 101 ms
53,604 KB
testcase_17 AC 112 ms
53,348 KB
testcase_18 AC 132 ms
53,684 KB
testcase_19 AC 135 ms
54,164 KB
testcase_20 AC 107 ms
52,732 KB
testcase_21 AC 109 ms
53,000 KB
testcase_22 AC 144 ms
54,320 KB
testcase_23 AC 169 ms
54,312 KB
testcase_24 AC 185 ms
54,904 KB
testcase_25 AC 190 ms
54,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int[] b = new int[1000];
		int end,buf;
		s.next();
		while(s.hasNext()){
			String in = s.next();
			for(int i=0; i<in.length(); i++) {
				b[i] = Integer.parseInt(String.valueOf(in.charAt(i)));
			}
			end = in.length();
			while(end!=1) {
				for(int i=0; i<end-1; i++) {
					buf = b[i]+b[i+1];
					b[i]=buf%10+buf/10;
				}
				end--;
			}
			System.out.println(b[0]);
		}
	}
}
0