結果

問題 No.2142 Segment Zero
ユーザー ニックネームニックネーム
提出日時 2022-12-02 22:10:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-09 23:40:44
合計ジャッジ時間 14,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 519 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 604 ms
10,752 KB
testcase_04 AC 616 ms
10,752 KB
testcase_05 AC 631 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 521 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 532 ms
10,752 KB
testcase_11 AC 521 ms
10,624 KB
testcase_12 AC 531 ms
10,752 KB
testcase_13 AC 529 ms
10,752 KB
testcase_14 AC 528 ms
10,752 KB
testcase_15 AC 554 ms
10,752 KB
testcase_16 AC 521 ms
10,752 KB
testcase_17 AC 438 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 306 ms
10,752 KB
testcase_21 WA -
testcase_22 AC 389 ms
10,752 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 260 ms
10,752 KB
testcase_29 AC 305 ms
10,752 KB
testcase_30 AC 380 ms
10,752 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 523 ms
10,752 KB
testcase_36 AC 138 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
for i in range(n):
    if k == (i+1)*(i+2)//2: print(1); exit()
ans = 0; i = n+1
for v in range(n, 0, -1):
    if k >= v: k -= v; i = v
    elif i == v+1: ans += 1
print(ans)
0