結果
問題 | No.2551 2, 3, 5, 7 Game |
ユーザー | tnakao0123 |
提出日時 | 2023-11-27 17:29:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 42 ms / 2,357 ms |
コード長 | 631 bytes |
コンパイル時間 | 441 ms |
コンパイル使用メモリ | 40,648 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 12:31:36 |
合計ジャッジ時間 | 1,386 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 41 ms
5,376 KB |
testcase_06 | AC | 42 ms
5,376 KB |
testcase_07 | AC | 42 ms
5,376 KB |
testcase_08 | AC | 41 ms
5,376 KB |
testcase_09 | AC | 31 ms
5,376 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 2551.cc: No.2551 2, 3, 5, 7 Game - yukicoder */ #include<cstdio> #include<algorithm> using namespace std; /* constant */ const long long LINF = 1LL << 60; /* typedef */ typedef long long ll; /* global variables */ /* subroutines */ /* main */ int main() { int tn; scanf("%d", &tn); while (tn--) { ll n; scanf("%lld", &n); ll l = n, r = LINF; while (l >= 2) { ll f = (l + 1) / 2; r = l, l = f; if (l <= 1) { puts("ryota"); break; } ll g = (l + 6) / 7; r = l, l = g; if (l <= 1) { puts("sepa"); break; } } } return 0; }