結果
問題 | No.2551 2, 3, 5, 7 Game |
ユーザー | tenten |
提出日時 | 2023-12-13 14:28:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 438 ms / 2,357 ms |
コード長 | 1,884 bytes |
コンパイル時間 | 3,108 ms |
コンパイル使用メモリ | 88,944 KB |
実行使用メモリ | 62,104 KB |
最終ジャッジ日時 | 2024-09-27 05:22:24 |
合計ジャッジ時間 | 7,144 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,456 KB |
testcase_01 | AC | 56 ms
50,388 KB |
testcase_02 | AC | 58 ms
50,320 KB |
testcase_03 | AC | 58 ms
49,960 KB |
testcase_04 | AC | 56 ms
50,344 KB |
testcase_05 | AC | 438 ms
62,088 KB |
testcase_06 | AC | 436 ms
62,012 KB |
testcase_07 | AC | 430 ms
62,104 KB |
testcase_08 | AC | 428 ms
61,976 KB |
testcase_09 | AC | 359 ms
59,928 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int t = sc.nextInt(); int[] turn = new int[]{2, 7}; String[] winner = new String[]{"sepa\n", "ryota\n"}; StringBuilder sb = new StringBuilder(); while (t-- > 0) { long n = sc.nextLong(); int idx = 0; while (n > 1) { n = (n + turn[idx % 2] - 1) / turn[idx % 2]; idx++; } sb.append(winner[idx % 2]); } System.out.print(sb); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }