結果

問題 No.1571 All Your Cycles Are Same Lengths
ユーザー KazunKazun
提出日時 2021-06-28 03:26:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 68,984 KB
最終ジャッジ日時 2024-06-25 11:58:44
合計ジャッジ時間 2,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 41 ms
54,732 KB
testcase_02 WA -
testcase_03 AC 46 ms
59,436 KB
testcase_04 WA -
testcase_05 AC 53 ms
63,812 KB
testcase_06 WA -
testcase_07 AC 66 ms
67,592 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())

for _ in range(Q):
    N,T=map(int,input().split())

    if T%2==1:
        print("No")
        continue

    print("Yes")
    for i in range(1,N+1):
        for j in range(i+1,N+1):
            if i==1:
                print(i,j,T//2)
            else:
                print(i,j,0)
0