結果

問題 No.276 連続する整数の和(1)
ユーザー htensaihtensai
提出日時 2019-12-23 18:30:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 379 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 73,716 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-09-17 21:00:09
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,056 KB
testcase_01 AC 112 ms
40,952 KB
testcase_02 AC 99 ms
41,672 KB
testcase_03 AC 110 ms
41,284 KB
testcase_04 AC 115 ms
41,292 KB
testcase_05 AC 117 ms
41,256 KB
testcase_06 AC 120 ms
41,176 KB
testcase_07 AC 115 ms
41,204 KB
testcase_08 AC 116 ms
41,080 KB
testcase_09 AC 112 ms
39,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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