結果

問題 No.1619 Coccinellidae
ユーザー ayaoniayaoni
提出日時 2021-07-22 22:24:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-07-17 18:26:47
合計ジャッジ時間 2,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 64 ms
77,824 KB
testcase_02 AC 70 ms
78,336 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 72 ms
78,276 KB
testcase_05 AC 61 ms
75,648 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 62 ms
75,264 KB
testcase_08 AC 61 ms
75,228 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 57 ms
73,472 KB
testcase_11 AC 67 ms
77,900 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 66 ms
78,476 KB
testcase_14 AC 68 ms
78,720 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M,K = MI()
X = [i for i in range(N-1)]
X.append(M-(N-2)*(N-1)//2)

ANS = [-1]*N
for i in range(N):
    if K > N-1-i:
        K -= N-1-i
        ANS[N-1-i] = i
    else:
        ANS[K] = i
        n = i+1
        for j in range(K):
            ANS[j] = n
            n += 1
        for j in range(K+1,N-i):
            ANS[j] = n
            n += 1
        break

for i in range(N):
    print(X[ANS[i]])
0