結果

問題 No.821 Making Integers
ユーザー kohei2019kohei2019
提出日時 2022-04-19 23:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-06-10 20:50:42
合計ジャッジ時間 1,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,068 KB
testcase_01 AC 33 ms
51,868 KB
testcase_02 AC 33 ms
52,380 KB
testcase_03 AC 35 ms
53,900 KB
testcase_04 AC 34 ms
51,632 KB
testcase_05 AC 34 ms
51,740 KB
testcase_06 AC 36 ms
52,896 KB
testcase_07 AC 34 ms
53,172 KB
testcase_08 AC 31 ms
52,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
maxn = N*(N+1)//2
c = N-K
minn = -(maxn-c*(c+1))
d = maxn-minn
print(d//2+1)
0