結果

問題 No.2142 Segment Zero
ユーザー ニックネームニックネーム
提出日時 2022-12-02 22:45:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,759 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 139,060 KB
最終ジャッジ日時 2024-10-10 01:04:02
合計ジャッジ時間 40,920 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 1,278 ms
138,928 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,287 ms
139,060 KB
testcase_04 AC 1,719 ms
139,060 KB
testcase_05 AC 1,724 ms
138,932 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 1,366 ms
138,928 KB
testcase_08 AC 1,731 ms
139,056 KB
testcase_09 AC 1,313 ms
138,924 KB
testcase_10 AC 1,720 ms
138,928 KB
testcase_11 AC 1,752 ms
138,928 KB
testcase_12 AC 1,715 ms
138,924 KB
testcase_13 AC 1,700 ms
138,928 KB
testcase_14 AC 1,759 ms
138,928 KB
testcase_15 AC 1,708 ms
138,932 KB
testcase_16 AC 1,691 ms
138,932 KB
testcase_17 AC 1,436 ms
132,092 KB
testcase_18 AC 358 ms
41,868 KB
testcase_19 AC 319 ms
41,036 KB
testcase_20 AC 950 ms
78,168 KB
testcase_21 AC 820 ms
82,716 KB
testcase_22 AC 1,277 ms
132,152 KB
testcase_23 AC 321 ms
41,100 KB
testcase_24 AC 504 ms
71,380 KB
testcase_25 AC 576 ms
71,472 KB
testcase_26 AC 1,059 ms
132,216 KB
testcase_27 AC 1,057 ms
132,152 KB
testcase_28 AC 802 ms
72,596 KB
testcase_29 AC 936 ms
77,844 KB
testcase_30 AC 1,281 ms
132,044 KB
testcase_31 AC 973 ms
132,156 KB
testcase_32 AC 442 ms
45,324 KB
testcase_33 AC 191 ms
27,200 KB
testcase_34 AC 569 ms
71,484 KB
testcase_35 AC 1,658 ms
137,396 KB
testcase_36 AC 384 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = {0}; b = {0}
for i in range(n): a.add((i+1)*(i+2)//2); b.add((i+1)*(2*n-i)//2)
for v in a:
    if k-v in b: print(1); break
else: print(2)
0