結果

問題 No.2821 A[i] ← 2A[j] - A[i]
ユーザー viral8viral8
提出日時 2024-04-07 00:51:59
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 475 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 71,300 KB
最終ジャッジ日時 2024-07-26 20:51:04
合計ジャッジ時間 28,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,472 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 1,488 ms
70,600 KB
testcase_05 TLE -
testcase_06 AC 1,140 ms
58,508 KB
testcase_07 AC 1,101 ms
58,952 KB
testcase_08 TLE -
testcase_09 AC 681 ms
52,832 KB
testcase_10 AC 807 ms
53,804 KB
testcase_11 AC 697 ms
54,176 KB
testcase_12 AC 723 ms
53,008 KB
testcase_13 AC 735 ms
53,596 KB
testcase_14 AC 838 ms
57,824 KB
testcase_15 AC 918 ms
57,852 KB
testcase_16 AC 635 ms
51,460 KB
testcase_17 AC 860 ms
57,888 KB
testcase_18 AC 876 ms
57,788 KB
testcase_19 AC 334 ms
47,144 KB
testcase_20 AC 343 ms
47,876 KB
testcase_21 AC 256 ms
44,632 KB
testcase_22 AC 285 ms
46,772 KB
testcase_23 AC 297 ms
46,128 KB
testcase_24 AC 171 ms
41,792 KB
testcase_25 AC 187 ms
41,960 KB
testcase_26 AC 238 ms
43,044 KB
testcase_27 AC 235 ms
43,068 KB
testcase_28 AC 219 ms
42,560 KB
testcase_29 AC 213 ms
42,956 KB
testcase_30 AC 144 ms
48,252 KB
testcase_31 AC 133 ms
41,364 KB
testcase_32 AC 216 ms
42,688 KB
testcase_33 AC 234 ms
42,652 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;
		while(--N>0){
			System.out.println(gcd);
			long nextA = sc.nextLong();
			gcd = gcd(gcd,Math.abs(A-nextA));
		}
		System.out.println(gcd);
	}
	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