結果
問題 | No.1571 All Your Cycles Are Same Lengths |
ユーザー | googol_S0 |
提出日時 | 2021-06-27 13:06:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 316 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 82,848 KB |
実行使用メモリ | 70,956 KB |
最終ジャッジ日時 | 2024-06-25 11:19:34 |
合計ジャッジ時間 | 1,952 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,096 KB |
testcase_01 | AC | 41 ms
52,864 KB |
testcase_02 | AC | 46 ms
59,264 KB |
testcase_03 | AC | 46 ms
59,136 KB |
testcase_04 | WA | - |
testcase_05 | AC | 54 ms
63,104 KB |
testcase_06 | WA | - |
testcase_07 | AC | 58 ms
66,176 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 print('No')