結果

問題 No.2224 UFO Game
ユーザー norikamenorikame
提出日時 2022-12-10 17:52:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 2,733 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-09-13 04:33:33
合計ジャッジ時間 4,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,284 KB
testcase_01 AC 115 ms
52,500 KB
testcase_02 AC 124 ms
53,948 KB
testcase_03 AC 124 ms
54,088 KB
testcase_04 AC 110 ms
52,912 KB
testcase_05 AC 113 ms
52,684 KB
testcase_06 AC 111 ms
52,992 KB
testcase_07 AC 109 ms
52,996 KB
testcase_08 AC 122 ms
53,996 KB
testcase_09 AC 124 ms
53,776 KB
testcase_10 AC 111 ms
53,016 KB
testcase_11 AC 125 ms
54,040 KB
testcase_12 AC 110 ms
52,812 KB
testcase_13 AC 124 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        if (s.charAt(0) == 'x') System.out.println((1L<<32)-Integer.parseInt(s.substring(1)));
        else System.out.println(Integer.parseInt(s));
        sc.close();
    }
}
0