結果
問題 | No.1571 All Your Cycles Are Same Lengths |
ユーザー | googol_S0 |
提出日時 | 2021-06-27 13:08:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 436 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 82,828 KB |
実行使用メモリ | 71,136 KB |
最終ジャッジ日時 | 2024-06-25 11:20:03 |
合計ジャッジ時間 | 2,106 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,584 KB |
testcase_01 | AC | 44 ms
52,352 KB |
testcase_02 | AC | 50 ms
58,752 KB |
testcase_03 | AC | 49 ms
59,264 KB |
testcase_04 | WA | - |
testcase_05 | AC | 63 ms
63,372 KB |
testcase_06 | WA | - |
testcase_07 | AC | 62 ms
65,664 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
Q=int(input()) for i in range(Q): N,T=map(int,input().split()) if (T&1)==0: print('Yes') for j in range(N): for k in range(j+1,N): print(j+1,k+1,(T>>1)*(1 if j==0 else 0)) continue if N==3: print('Yes') print(1,2,T) print(2,3,0) print(1,3,0) continue if T%N==0: print('Yes') for j in range(N): for k in range(j+1,N): print(j+1,k+1,1) continue print('No')