結果

問題 No.2142 Segment Zero
ユーザー KudeKude
提出日時 2022-12-02 21:39:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 59,160 KB
最終ジャッジ日時 2024-10-09 22:48:44
合計ジャッジ時間 3,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,320 KB
testcase_01 AC 59 ms
58,496 KB
testcase_02 AC 41 ms
52,220 KB
testcase_03 AC 40 ms
53,784 KB
testcase_04 AC 55 ms
58,780 KB
testcase_05 AC 57 ms
58,400 KB
testcase_06 AC 38 ms
52,204 KB
testcase_07 AC 43 ms
58,676 KB
testcase_08 AC 57 ms
58,076 KB
testcase_09 AC 49 ms
58,808 KB
testcase_10 AC 59 ms
57,852 KB
testcase_11 AC 58 ms
58,472 KB
testcase_12 AC 57 ms
59,160 KB
testcase_13 AC 59 ms
57,948 KB
testcase_14 AC 58 ms
57,912 KB
testcase_15 AC 56 ms
58,736 KB
testcase_16 AC 55 ms
58,188 KB
testcase_17 AC 53 ms
58,052 KB
testcase_18 AC 43 ms
57,572 KB
testcase_19 AC 41 ms
58,772 KB
testcase_20 AC 50 ms
58,176 KB
testcase_21 AC 41 ms
58,548 KB
testcase_22 AC 51 ms
58,672 KB
testcase_23 AC 44 ms
58,468 KB
testcase_24 AC 45 ms
58,284 KB
testcase_25 AC 42 ms
57,968 KB
testcase_26 AC 45 ms
58,648 KB
testcase_27 AC 42 ms
58,436 KB
testcase_28 AC 47 ms
59,108 KB
testcase_29 AC 49 ms
58,780 KB
testcase_30 AC 55 ms
59,136 KB
testcase_31 AC 43 ms
58,920 KB
testcase_32 AC 44 ms
57,796 KB
testcase_33 AC 42 ms
58,852 KB
testcase_34 AC 43 ms
58,044 KB
testcase_35 AC 54 ms
57,912 KB
testcase_36 AC 45 ms
58,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
assert 0 <= k < n * (n + 1) // 2
k = n * (n + 1) // 2 - k
for m in range(1, n + 1):
    r = m * (m + 1) // 2
    if (k - r) % m == 0:
        c = (k - r) // m
        if 0 <= c <= n - m:
            print(1)
            break
else:
    print(2)
0