結果

問題 No.2142 Segment Zero
ユーザー 遭難者遭難者
提出日時 2022-11-16 12:11:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 61,316 KB
最終ジャッジ日時 2024-09-17 09:11:46
合計ジャッジ時間 2,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 48 ms
58,812 KB
testcase_02 AC 35 ms
52,940 KB
testcase_03 AC 34 ms
53,072 KB
testcase_04 AC 41 ms
59,116 KB
testcase_05 AC 41 ms
59,844 KB
testcase_06 AC 33 ms
52,000 KB
testcase_07 AC 46 ms
60,960 KB
testcase_08 AC 45 ms
59,680 KB
testcase_09 AC 47 ms
61,316 KB
testcase_10 AC 44 ms
59,448 KB
testcase_11 AC 42 ms
58,916 KB
testcase_12 AC 42 ms
59,520 KB
testcase_13 AC 43 ms
60,168 KB
testcase_14 AC 44 ms
58,940 KB
testcase_15 AC 43 ms
59,180 KB
testcase_16 AC 41 ms
59,532 KB
testcase_17 AC 42 ms
58,712 KB
testcase_18 AC 39 ms
60,080 KB
testcase_19 AC 42 ms
61,236 KB
testcase_20 AC 41 ms
59,172 KB
testcase_21 AC 45 ms
60,304 KB
testcase_22 AC 40 ms
58,868 KB
testcase_23 AC 41 ms
60,732 KB
testcase_24 AC 42 ms
59,780 KB
testcase_25 AC 42 ms
59,432 KB
testcase_26 AC 46 ms
59,432 KB
testcase_27 AC 47 ms
59,992 KB
testcase_28 AC 43 ms
58,764 KB
testcase_29 AC 43 ms
58,864 KB
testcase_30 AC 45 ms
59,316 KB
testcase_31 AC 43 ms
60,476 KB
testcase_32 AC 43 ms
60,240 KB
testcase_33 AC 41 ms
59,492 KB
testcase_34 AC 41 ms
59,232 KB
testcase_35 AC 42 ms
59,492 KB
testcase_36 AC 41 ms
59,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
s=2
for i in range(1,n+1):
    x=(n-i)*(n+i+1)//2-k
    if x<0:
        break
    if x>i*(n-i):
        continue
    if x%i==0:
        s=1
print(s)
0