結果
問題 | No.2551 2, 3, 5, 7 Game |
ユーザー | tenten |
提出日時 | 2023-11-27 11:46:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 450 ms / 2,357 ms |
コード長 | 1,879 bytes |
コンパイル時間 | 3,072 ms |
コンパイル使用メモリ | 91,252 KB |
実行使用メモリ | 49,992 KB |
最終ジャッジ日時 | 2024-09-26 12:17:32 |
合計ジャッジ時間 | 6,380 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
36,504 KB |
testcase_01 | AC | 65 ms
36,688 KB |
testcase_02 | AC | 64 ms
36,940 KB |
testcase_03 | AC | 62 ms
36,944 KB |
testcase_04 | AC | 63 ms
36,496 KB |
testcase_05 | AC | 437 ms
49,856 KB |
testcase_06 | AC | 446 ms
49,992 KB |
testcase_07 | AC | 450 ms
49,976 KB |
testcase_08 | AC | 444 ms
49,948 KB |
testcase_09 | AC | 396 ms
49,844 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(); StringBuilder sb = new StringBuilder(); int[] div = new int[]{2, 7}; String[] names = new String[]{"sepa", "ryota"}; while (t-- > 0) { long n = sc.nextLong(); int idx = 0; while (n > 1) { n = (n + div[idx] - 1) / div[idx]; idx ^= 1; } sb.append(names[idx]).append("\n"); } 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(); } }