結果

問題 No.276 連続する整数の和(1)
ユーザー uafr_csuafr_cs
提出日時 2015-09-04 22:41:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 406 bytes
コンパイル時間 3,516 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-07-19 01:12:51
合計ジャッジ時間 5,286 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,104 KB
testcase_01 AC 119 ms
41,320 KB
testcase_02 AC 110 ms
41,148 KB
testcase_03 AC 118 ms
41,200 KB
testcase_04 AC 117 ms
41,092 KB
testcase_05 AC 116 ms
41,040 KB
testcase_06 AC 115 ms
40,936 KB
testcase_07 AC 102 ms
40,012 KB
testcase_08 AC 114 ms
41,180 KB
testcase_09 AC 114 ms
40,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static long gcd(long a, long b){
		return b == 0 ? a : gcd(b, a % b);
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		System.out.println(gcd(N, (N * (N - 1) / 2)));
		
	}

}
0