結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー viral8viral8
提出日時 2024-04-07 00:53:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,142 ms / 1,500 ms
コード長 553 bytes
コンパイル時間 2,730 ms
コンパイル使用メモリ 84,040 KB
実行使用メモリ 73,928 KB
最終ジャッジ日時 2024-07-26 20:51:16
合計ジャッジ時間 20,849 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,048 KB
testcase_01 AC 990 ms
71,408 KB
testcase_02 AC 1,142 ms
73,928 KB
testcase_03 AC 1,098 ms
71,420 KB
testcase_04 AC 899 ms
72,584 KB
testcase_05 AC 941 ms
70,748 KB
testcase_06 AC 740 ms
68,664 KB
testcase_07 AC 654 ms
65,116 KB
testcase_08 AC 877 ms
72,704 KB
testcase_09 AC 513 ms
58,904 KB
testcase_10 AC 563 ms
61,168 KB
testcase_11 AC 536 ms
59,120 KB
testcase_12 AC 521 ms
59,132 KB
testcase_13 AC 520 ms
59,160 KB
testcase_14 AC 565 ms
59,176 KB
testcase_15 AC 605 ms
59,092 KB
testcase_16 AC 481 ms
59,024 KB
testcase_17 AC 525 ms
58,304 KB
testcase_18 AC 629 ms
61,728 KB
testcase_19 AC 278 ms
58,364 KB
testcase_20 AC 289 ms
57,844 KB
testcase_21 AC 220 ms
56,868 KB
testcase_22 AC 235 ms
57,540 KB
testcase_23 AC 254 ms
57,836 KB
testcase_24 AC 175 ms
54,276 KB
testcase_25 AC 182 ms
54,416 KB
testcase_26 AC 202 ms
54,436 KB
testcase_27 AC 197 ms
54,368 KB
testcase_28 AC 204 ms
54,320 KB
testcase_29 AC 192 ms
54,316 KB
testcase_30 AC 152 ms
54,120 KB
testcase_31 AC 143 ms
54,140 KB
testcase_32 AC 186 ms
54,536 KB
testcase_33 AC 191 ms
54,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long A = sc.nextLong();
		long gcd = 0;
		StringBuilder ans = new StringBuilder();
		while(--N>0){
			ans.append(gcd).append('\n');
			long nextA = sc.nextLong();
			gcd = gcd(gcd,Math.abs(A-nextA));
		}
		ans.append(gcd);
		System.out.println(ans.toString());
	}
	private static long gcd(long a,long b){
		if(b==0)
			return a;
		long temp;
		while((temp=a%b)!=0){
			a = b;
			b = temp;
		}
		return b;
	}
}
0