結果

問題 No.2925 2-Letter Shiritori
ユーザー tentententen
提出日時 2024-10-21 10:42:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,541 bytes
コンパイル時間 2,623 ms
コンパイル使用メモリ 80,256 KB
実行使用メモリ 67,968 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-21 10:42:07
合計ジャッジ時間 6,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
67,768 KB
testcase_01 AC 132 ms
67,968 KB
testcase_02 AC 130 ms
67,232 KB
testcase_03 AC 132 ms
67,672 KB
testcase_04 AC 129 ms
67,648 KB
testcase_05 AC 129 ms
67,432 KB
testcase_06 AC 130 ms
67,820 KB
testcase_07 AC 131 ms
67,316 KB
testcase_08 AC 131 ms
67,100 KB
testcase_09 AC 152 ms
67,400 KB
testcase_10 AC 131 ms
67,656 KB
testcase_11 AC 131 ms
67,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char start = sc.next().charAt(0);
        char[] ans = new char[2];
        ans[0] = start;
        ans[1] = start;
        System.out.println("? " + new String(ans));
        System.out.flush();
        while (true) {
            String reply = sc.next();
            if (reply.charAt(0) == '!') {
                break;
            }
            reply = sc.next();
            ans[0] = reply.charAt(1);
            System.out.println("? " + new String(ans));
            System.out.flush();
        }
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0