結果
問題 | No.1571 All Your Cycles Are Same Lengths |
ユーザー | SSRS |
提出日時 | 2021-06-27 13:16:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 1,782 ms |
コンパイル使用メモリ | 166,916 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 11:20:49 |
合計ジャッジ時間 | 3,395 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int Q; cin >> Q; for (int i = 0; i < Q; i++){ int N, T; cin >> N >> T; int x = -1, y = -1; for (int j = 0; j < T; j++){ for (int k = 0; k < T; k++){ if (j * N + k * 2 == T){ x = j; y = k; } } } if (x == -1 && y == -1){ cout << "No" << endl; } else { cout << "Yes" << endl; for (int j = 0; j < N; j++){ for (int k = j + 1; k < N; k++){ int c; if (j == 0){ c = x + y; } else { c = x; } cout << j + 1 << ' ' << k + 1 << ' ' << c << endl; } } } } }