結果
問題 | No.2652 [Cherry 6th Tune N] Δρονε χιρχλινγ |
ユーザー | hirayuu_yc |
提出日時 | 2024-02-23 21:33:56 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 866 ms / 2,000 ms |
コード長 | 509 bytes |
コンパイル時間 | 486 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 129,408 KB |
最終ジャッジ日時 | 2024-09-29 05:44:10 |
合計ジャッジ時間 | 49,294 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 42 |
ソースコード
import sys #sys.setrecursionlimit((1<<19)-1) #import pypyjit #pypyjit.set_param('max_unroll_recursion=-1') input=sys.stdin.buffer.readline T=int(input()) for i in range(T): N,L=map(int,input().split()) pos=[tuple(map(int,input().split())) for i in range(N)] rp=[] cnt=0 bac=max(1,L//500) for x,y in pos: p=1 if (x//bac)%2: p=-1 rp.append((x//bac,(y//bac)*p,cnt)) cnt+=1 rp.sort() print(N) for _,_,i in rp: print(*pos[i])