結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
40,456 KB
testcase_01 AC 101 ms
40,940 KB
testcase_02 AC 102 ms
40,352 KB
testcase_03 AC 108 ms
41,212 KB
testcase_04 AC 110 ms
41,188 KB
testcase_05 AC 112 ms
40,996 KB
testcase_06 AC 126 ms
41,136 KB
testcase_07 AC 111 ms
41,364 KB
testcase_08 AC 105 ms
40,808 KB
testcase_09 AC 187 ms
43,064 KB
testcase_10 AC 131 ms
41,568 KB
testcase_11 AC 105 ms
40,200 KB
testcase_12 AC 112 ms
40,496 KB
testcase_13 AC 113 ms
40,444 KB
testcase_14 AC 118 ms
41,684 KB
testcase_15 AC 101 ms
40,388 KB
testcase_16 AC 109 ms
40,688 KB
testcase_17 AC 112 ms
40,400 KB
testcase_18 AC 125 ms
41,644 KB
testcase_19 AC 125 ms
41,188 KB
testcase_20 AC 117 ms
41,588 KB
testcase_21 AC 122 ms
41,344 KB
testcase_22 AC 143 ms
41,384 KB
testcase_23 AC 164 ms
42,368 KB
testcase_24 AC 184 ms
42,892 KB
testcase_25 AC 191 ms
43,332 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