結果

問題 No.276 連続する整数の和(1)
ユーザー gu_21816943gu_21816943
提出日時 2017-06-27 01:51:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 966 ms / 1,000 ms
コード長 542 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 51,000 KB
最終ジャッジ日時 2024-10-04 10:01:06
合計ジャッジ時間 5,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
49,984 KB
testcase_01 AC 52 ms
49,816 KB
testcase_02 AC 52 ms
50,020 KB
testcase_03 AC 184 ms
50,696 KB
testcase_04 AC 183 ms
50,664 KB
testcase_05 AC 966 ms
50,972 KB
testcase_06 AC 949 ms
51,000 KB
testcase_07 AC 837 ms
50,680 KB
testcase_08 AC 71 ms
50,792 KB
testcase_09 AC 51 ms
50,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int num=Integer.parseInt(br.readLine());
		br.close();

		long sum1=0,sum2=0;
		int i;
		for(i=1;i<=num;i++){
			sum1+=i;
			sum2+=i+1;
		}
		System.out.println(euclid(sum2,sum1));

	}

	public static long euclid(long a,long b){
		if(b==0){
			return a;
		}else{
			return euclid(b,a%b);
		}
	}
}
0