結果
問題 | No.1801 Segment Game |
ユーザー | tnakao0123 |
提出日時 | 2022-01-14 17:06:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 561 bytes |
コンパイル時間 | 419 ms |
コンパイル使用メモリ | 40,876 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-19 10:57:12 |
合計ジャッジ時間 | 2,279 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 41 ms
5,248 KB |
testcase_02 | AC | 38 ms
5,248 KB |
testcase_03 | AC | 39 ms
5,248 KB |
testcase_04 | AC | 38 ms
5,248 KB |
testcase_05 | AC | 37 ms
5,248 KB |
testcase_06 | AC | 38 ms
5,248 KB |
testcase_07 | AC | 36 ms
5,248 KB |
testcase_08 | AC | 37 ms
5,248 KB |
testcase_09 | AC | 37 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
ソースコード
/* -*- 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; }