結果

問題 No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ
ユーザー tassei903tassei903
提出日時 2024-02-23 22:30:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,588 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,060 KB
最終ジャッジ日時 2024-09-29 07:30:25
合計ジャッジ時間 75,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 552 ms
81,408 KB
testcase_02 AC 557 ms
81,792 KB
testcase_03 AC 573 ms
82,816 KB
testcase_04 AC 837 ms
113,248 KB
testcase_05 AC 878 ms
117,028 KB
testcase_06 AC 950 ms
118,392 KB
testcase_07 AC 1,267 ms
127,280 KB
testcase_08 AC 1,259 ms
126,092 KB
testcase_09 AC 1,340 ms
126,556 KB
testcase_10 AC 1,286 ms
127,476 KB
testcase_11 AC 1,272 ms
128,440 KB
testcase_12 AC 1,240 ms
126,384 KB
testcase_13 AC 1,378 ms
129,608 KB
testcase_14 AC 1,553 ms
134,956 KB
testcase_15 AC 1,421 ms
129,300 KB
testcase_16 AC 1,279 ms
127,512 KB
testcase_17 AC 1,382 ms
129,300 KB
testcase_18 AC 1,418 ms
129,596 KB
testcase_19 AC 1,378 ms
129,200 KB
testcase_20 AC 1,572 ms
133,996 KB
testcase_21 AC 1,573 ms
133,976 KB
testcase_22 AC 1,563 ms
134,000 KB
testcase_23 AC 1,533 ms
134,124 KB
testcase_24 AC 1,527 ms
133,492 KB
testcase_25 AC 1,510 ms
133,468 KB
testcase_26 AC 1,529 ms
133,812 KB
testcase_27 AC 1,547 ms
133,656 KB
testcase_28 AC 1,563 ms
133,608 KB
testcase_29 AC 1,571 ms
133,696 KB
testcase_30 AC 1,553 ms
135,060 KB
testcase_31 AC 1,564 ms
134,228 KB
testcase_32 AC 1,588 ms
134,104 KB
testcase_33 AC 1,568 ms
134,216 KB
testcase_34 AC 1,539 ms
133,848 KB
testcase_35 AC 1,555 ms
134,196 KB
testcase_36 AC 1,529 ms
133,980 KB
testcase_37 AC 1,574 ms
134,312 KB
testcase_38 AC 1,557 ms
133,924 KB
testcase_39 AC 1,564 ms
133,856 KB
testcase_40 AC 608 ms
132,480 KB
testcase_41 AC 592 ms
132,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
#######################################################################
b = 500
def dist(a, b):
    return abs(a[0] - b[0]) + abs(a[1] - b[1])

for _ in range(ni()):
    n, l = na()
    l += 1
    p = []
    for i in range(n):
        x, y = na()
        p.append([x*b//l,[y if (x*b//l)%2 else -y] , x, y])
    p = sorted(p)
    print(n)
    s = 0
    for i in range(n):
        s += dist(p[i][2:], p[(i+1)%n][2:])
        print(*p[i][2:])
    assert s <= 1000*(l-1)
0