結果
| 問題 |
No.1563 Same Degree
|
| コンテスト | |
| ユーザー |
keisuke6
|
| 提出日時 | 2022-10-15 16:01:15 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 240 bytes |
| コンパイル時間 | 2,060 ms |
| コンパイル使用メモリ | 193,536 KB |
| 最終ジャッジ日時 | 2025-02-08 06:35:53 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 5 WA * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
int T;
cin>>T;
for(int i=0;i<T;i++){
int N;
cin>>N;
if(N != 1) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
}
keisuke6