結果

問題 No.821 Making Integers
ユーザー 37zigen37zigen
提出日時 2019-04-26 21:30:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 888 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-11-25 02:05:48
合計ジャッジ時間 5,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,868 KB
testcase_01 AC 227 ms
54,052 KB
testcase_02 AC 131 ms
54,028 KB
testcase_03 AC 888 ms
53,908 KB
testcase_04 AC 133 ms
54,108 KB
testcase_05 AC 683 ms
53,988 KB
testcase_06 AC 158 ms
54,060 KB
testcase_07 AC 196 ms
54,148 KB
testcase_08 AC 140 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}

	void run() throws Exception {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long K = sc.nextLong();
		long ans = 1;
		for (int i = 0; i < K; ++i) {
			ans += N - i;
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0