結果

問題 No.1801 Segment Game
ユーザー rogi52rogi52
提出日時 2022-10-22 04:40:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 201,132 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 10:54:30
合計ジャッジ時間 3,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 40 ms
5,376 KB
testcase_02 AC 40 ms
5,376 KB
testcase_03 AC 40 ms
5,376 KB
testcase_04 AC 40 ms
5,376 KB
testcase_05 AC 40 ms
5,376 KB
testcase_06 AC 40 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
using ll = long long;
using ld = long double;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int T; cin >> T;
    rep(_,T) {
        ll H,W,D; cin >> H >> W >> D;
        enum { SECOND, FIRST };
        using i128 = __int128_t;
        cout << ([H, W, D]() {
            if((i128)H * H + (H % 2) * (H % 2) <= (i128)D * D) return FIRST;
            if((i128)W * W + (W % 2) * (W % 2) <= (i128)D * D) return FIRST;
            return SECOND;
        } () ? "N" : "S") << "\n";
    }
}
0