結果

問題 No.276 連続する整数の和(1)
ユーザー kou6839kou6839
提出日時 2015-09-06 17:23:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 443 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 54,080 KB
最終ジャッジ日時 2024-07-19 04:32:27
合計ジャッジ時間 3,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,768 KB
testcase_01 AC 114 ms
53,620 KB
testcase_02 AC 114 ms
53,868 KB
testcase_03 AC 105 ms
52,664 KB
testcase_04 AC 117 ms
53,576 KB
testcase_05 AC 103 ms
52,644 KB
testcase_06 AC 116 ms
53,940 KB
testcase_07 AC 116 ms
53,516 KB
testcase_08 AC 121 ms
54,080 KB
testcase_09 AC 123 ms
53,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.ObjectInputStream.GetField;
import java.net.NetworkInterface;
import java.util.*;
import java.util.zip.Inflater;

import javax.swing.plaf.synth.SynthSpinnerUI;


public class Main {
	static long gcd(long N, long N2){
		if(N2==0) return N;
		else return gcd(N2, N%N2);
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		
		System.out.println(gcd(N,N*(N-1)/2));
	}	
}
0