結果
| 問題 | 
                            No.1571 All Your Cycles Are Same Lengths
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-06-30 06:32:10 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 579 bytes | 
| コンパイル時間 | 712 ms | 
| コンパイル使用メモリ | 65,584 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-06-26 08:35:00 | 
| 合計ジャッジ時間 | 2,442 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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>2&&T%(N-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?0:T/(N-2))<<endl;
			}
		}
		else cout<<"No"<<endl;
	}
}