結果

問題 No.2760 not fair position game
ユーザー tentententen
提出日時 2024-05-22 12:44:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,170 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 50,448 KB
最終ジャッジ日時 2024-05-22 12:44:14
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
49,988 KB
testcase_01 AC 48 ms
49,888 KB
testcase_02 AC 50 ms
49,876 KB
testcase_03 AC 48 ms
50,340 KB
testcase_04 AC 47 ms
50,116 KB
testcase_05 AC 49 ms
50,300 KB
testcase_06 AC 49 ms
50,364 KB
testcase_07 AC 47 ms
50,384 KB
testcase_08 AC 48 ms
50,388 KB
testcase_09 AC 56 ms
50,356 KB
testcase_10 AC 48 ms
50,000 KB
testcase_11 AC 48 ms
50,312 KB
testcase_12 AC 49 ms
50,320 KB
testcase_13 AC 54 ms
50,448 KB
testcase_14 AC 52 ms
50,352 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();
        String[] names = {"Bob", "Alice"};
        System.out.println(names[sc.nextInt() % 2]);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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