結果
問題 | No.2845 Birthday Pattern in Two Different Calendars |
ユーザー | timi |
提出日時 | 2024-08-23 22:14:23 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 321 ms |
コンパイル使用メモリ | 82,464 KB |
実行使用メモリ | 118,580 KB |
最終ジャッジ日時 | 2024-08-23 22:14:28 |
合計ジャッジ時間 | 5,345 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
55,176 KB |
testcase_01 | WA | - |
testcase_02 | AC | 121 ms
115,604 KB |
testcase_03 | AC | 102 ms
106,956 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 91 ms
91,372 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 95 ms
102,264 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 64 ms
78,040 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 142 ms
118,580 KB |
testcase_22 | AC | 171 ms
77,788 KB |
ソースコード
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()) #C=list(map(int, input().split())) ans=[] D={} q=M-1 for p in range(1,K+1): q+=1 if q>K: q=1 if p not in D and q not in D and p!=q: D[p]=1;D[q]=1;ans.append(p) if len(ans)<N: print('No') else: print('Yes') print(*ans[:N])