結果

問題 No.1089 三変数方程式
ユーザー RISE70226821RISE70226821
提出日時 2020-08-04 13:55:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-09-14 14:52:30
合計ジャッジ時間 5,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,236 KB
testcase_01 AC 114 ms
40,004 KB
testcase_02 AC 115 ms
39,912 KB
testcase_03 AC 129 ms
41,460 KB
testcase_04 AC 127 ms
41,212 KB
testcase_05 AC 116 ms
40,108 KB
testcase_06 AC 129 ms
41,060 KB
testcase_07 AC 132 ms
41,188 KB
testcase_08 AC 126 ms
41,188 KB
testcase_09 AC 114 ms
40,232 KB
testcase_10 AC 129 ms
41,236 KB
testcase_11 AC 127 ms
41,052 KB
testcase_12 AC 130 ms
41,136 KB
testcase_13 AC 129 ms
41,388 KB
testcase_14 AC 130 ms
41,268 KB
testcase_15 AC 130 ms
41,156 KB
testcase_16 AC 117 ms
40,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		
		// 計算
		int result = (N+1 + 1) * (N+1) / 2;
		
		// 出力
		System.out.println(result);
	}
}
0