結果
問題 | No.821 Making Integers |
ユーザー | irumo8202 |
提出日時 | 2022-01-28 12:12:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 144 bytes |
コンパイル時間 | 423 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 52,352 KB |
最終ジャッジ日時 | 2024-06-08 18:59:23 |
合計ジャッジ時間 | 1,080 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
51,584 KB |
testcase_01 | WA | - |
testcase_02 | AC | 39 ms
51,964 KB |
testcase_03 | AC | 40 ms
51,712 KB |
testcase_04 | AC | 39 ms
52,352 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
N, K = map(int, input().split()) mx = (N * (N + 1)) // 2 mi = ((N - K) * (N - K + 1) // 2) - mx diff = mx - mi ans = diff // 2 + 1 print(ans)