結果

問題 No.2845 Birthday Pattern in Two Different Calendars
ユーザー timitimi
提出日時 2024-08-23 22:56:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 89,000 KB
最終ジャッジ日時 2024-08-23 22:56:24
合計ジャッジ時間 4,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,620 KB
testcase_01 AC 136 ms
77,964 KB
testcase_02 AC 92 ms
89,000 KB
testcase_03 AC 70 ms
75,664 KB
testcase_04 AC 88 ms
87,324 KB
testcase_05 AC 83 ms
81,852 KB
testcase_06 AC 74 ms
78,600 KB
testcase_07 AC 81 ms
81,944 KB
testcase_08 AC 71 ms
74,216 KB
testcase_09 AC 82 ms
80,312 KB
testcase_10 AC 75 ms
79,464 KB
testcase_11 AC 77 ms
79,608 KB
testcase_12 AC 93 ms
87,296 KB
testcase_13 AC 64 ms
74,216 KB
testcase_14 AC 52 ms
65,292 KB
testcase_15 AC 85 ms
84,900 KB
testcase_16 AC 77 ms
75,320 KB
testcase_17 AC 83 ms
82,892 KB
testcase_18 AC 78 ms
80,240 KB
testcase_19 AC 90 ms
87,564 KB
testcase_20 AC 81 ms
79,788 KB
testcase_21 AC 89 ms
88,912 KB
testcase_22 AC 151 ms
77,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq 
from heapq import heappop,heappush,heapify
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline
T=int(input())
from collections import deque
d=deque()

for _ in range(T):
  K,M,N=map(int, input().split())
  V=[0]*K;ans=[]
  for i in range(N):
    nex=(i+M-1)%K
    if V[i]==0 and V[nex]==0 and i!=nex:
      ans.append((i+1))
      p,q=i,nex
      V[p]=1;V[q]=1
      while True:
        p=(q+M-1)%K
        q=(p+M-1)%K 
        if V[p]==0 and V[q]==0:
          V[p]=1;V[q]=1
          ans.append((p+1))
        else:
          break 
  if len(ans)>=N:
    print('Yes')
    print(*ans[:N])
  else:
    print('No')
        
  #C=list(map(int, input().split()))
  
0