結果
| 問題 |
No.1801 Segment Game
|
| コンテスト | |
| ユーザー |
hiro71687k
|
| 提出日時 | 2023-04-17 16:06:15 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 224 ms / 2,000 ms |
| コード長 | 1,132 bytes |
| コンパイル時間 | 3,441 ms |
| コンパイル使用メモリ | 252,656 KB |
| 最終ジャッジ日時 | 2025-02-12 09:32:25 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=1444999999;
ll mod=998244353;
int main(){
ll t;
cin >>t;
vector<char>ans;
for (ll i = 0; i < t; i++)
{
ll h,w,d;
cin >> h >> w >> d;
if (h*h+w*w<d*d)
{
ans.push_back('N');
continue;
}
if (h%2==0)
{
if (w<=d)
{
ans.push_back('N');
continue;
}
}else{
if (w*w+1<=d*d)
{
ans.push_back('N');
continue;
}
}
if (w%2==0)
{
if (h<=d)
{
ans.push_back('N');
continue;
}
}else{
if (h*h+1<=d*d)
{
ans.push_back('N');
continue;
}
}
ans.push_back('S');
}
for (ll i = 0; i < ans.size(); i++)
{
cout << ans[i] << endl;
}
}
hiro71687k