結果

問題 No.434 占い
ユーザー 37zigen37zigen
提出日時 2020-04-04 04:01:36
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 776 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 79,364 KB
実行使用メモリ 66,224 KB
最終ジャッジ日時 2024-07-03 06:51:15
合計ジャッジ時間 10,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
47,180 KB
testcase_01 AC 124 ms
41,516 KB
testcase_02 AC 113 ms
41,492 KB
testcase_03 AC 124 ms
41,536 KB
testcase_04 AC 124 ms
41,568 KB
testcase_05 AC 124 ms
41,388 KB
testcase_06 AC 204 ms
42,828 KB
testcase_07 AC 139 ms
41,620 KB
testcase_08 AC 596 ms
41,828 KB
testcase_09 AC 240 ms
42,668 KB
testcase_10 AC 201 ms
42,596 KB
testcase_11 AC 239 ms
43,296 KB
testcase_12 AC 332 ms
46,868 KB
testcase_13 AC 593 ms
41,652 KB
testcase_14 AC 231 ms
42,812 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int T=sc.nextInt();
		for(int t=0;t<T;++t) {
			ArrayDeque<Integer> dq=new ArrayDeque<>();
			char[] cs=sc.next().toCharArray();
			for(int i=0;i<cs.length;++i) {
				dq.addLast((int)(cs[i]-'0'));
			}
			while(dq.size()>1) {
				int n=dq.size();
				for(int i=0;i<n-1;++i) {
					int v=dq.pollFirst();
					int nv=v+dq.peekFirst();
					nv=nv%10+nv/10;
					dq.addLast(nv);
				}
				dq.pollFirst();
			}
			System.out.println(dq.poll());
		}
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0