結果
| 問題 |
No.1571 All Your Cycles Are Same Lengths
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-06-29 21:09:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 535 bytes |
| コンパイル時間 | 650 ms |
| コンパイル使用メモリ | 65,708 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-25 23:36:33 |
| 合計ジャッジ時間 | 2,163 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 5 WA * 5 |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
4 | main()
| ^~~~
ソースコード
#include<iostream>
using namespace std;
int Q,N,T;
main()
{
cin>>Q;
for(;Q--;)
{
cin>>N>>T;
if(T%2==0)
{
cout<<"Yes"<<endl;
for(int i=1;i<N;i++)for(int j=i+1;j<=N;j++)
{
cout<<i<<" "<<j<<" "<<(i==1?T/2:0)<<endl;
}
}
else if(T%N==0)
{
cout<<"Yes"<<endl;
for(int i=1;i<N;i++)for(int j=i+1;j<=N;j++)
{
cout<<i<<" "<<j<<" "<<T/N<<endl;
}
}
else if(N==3)
{
cout<<"Yes"<<endl;
cout<<"1 2 "<<T<<endl;
cout<<"1 3 0"<<endl;
cout<<"2 3 0"<<endl;
}
else cout<<"No"<<endl;
}
}