結果

問題 No.432 占い(Easy)
ユーザー fal_rndfal_rnd
提出日時 2016-11-11 14:04:15
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 504 bytes
コンパイル時間 2,813 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 42,772 KB
最終ジャッジ日時 2024-05-04 02:07:43
合計ジャッジ時間 5,972 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,244 KB
testcase_01 AC 111 ms
40,924 KB
testcase_02 AC 112 ms
41,360 KB
testcase_03 AC 108 ms
41,140 KB
testcase_04 AC 109 ms
41,184 KB
testcase_05 AC 99 ms
40,372 KB
testcase_06 AC 126 ms
41,424 KB
testcase_07 AC 108 ms
41,308 KB
testcase_08 AC 109 ms
41,368 KB
testcase_09 AC 190 ms
42,452 KB
testcase_10 AC 121 ms
41,516 KB
testcase_11 AC 120 ms
41,140 KB
testcase_12 RE -
testcase_13 AC 126 ms
41,048 KB
testcase_14 AC 106 ms
39,884 KB
testcase_15 AC 108 ms
41,084 KB
testcase_16 AC 99 ms
40,268 KB
testcase_17 RE -
testcase_18 AC 121 ms
41,392 KB
testcase_19 AC 119 ms
41,260 KB
testcase_20 AC 119 ms
41,216 KB
testcase_21 AC 125 ms
41,460 KB
testcase_22 AC 141 ms
41,660 KB
testcase_23 AC 174 ms
41,964 KB
testcase_24 AC 194 ms
42,652 KB
testcase_25 AC 180 ms
42,772 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; i++) {
					buf = b[i]+b[i+1];
					b[i]=buf%10+buf/10;
				}
				end--;
			}
			System.out.println(b[0]);
		}
	}
}
0