結果

問題 No.1801 Segment Game
ユーザー tnakao0123tnakao0123
提出日時 2022-01-14 17:06:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 40,832 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-30 00:52:40
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1801.cc:  No.1801 Segment Game - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

/* typedef */

typedef long long ll;

/* global variables */

/* subroutines */

bool symdiv(int a, int b, int d) {
  if (! (a & 1)) return b <= d;
  return (ll)b * b + 1 <= (ll)d * d;
}

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    int h, w, d;
    scanf("%d%d%d", &h, &w, &d);

    if (symdiv(h, w, d) || symdiv(w, h, d)) puts("N");
    else puts("S");
  }
  return 0;
}
0