結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,352 KB
testcase_01 AC 200 ms
53,536 KB
testcase_02 AC 103 ms
52,864 KB
testcase_03 AC 833 ms
54,152 KB
testcase_04 AC 118 ms
53,924 KB
testcase_05 AC 628 ms
53,676 KB
testcase_06 AC 144 ms
54,224 KB
testcase_07 AC 179 ms
53,740 KB
testcase_08 AC 124 ms
54,032 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