結果

問題 No.524 コインゲーム
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-11 14:15:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-10-07 14:55:20
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,056 KB
testcase_01 AC 134 ms
54,116 KB
testcase_02 AC 133 ms
54,260 KB
testcase_03 AC 132 ms
53,992 KB
testcase_04 AC 134 ms
53,976 KB
testcase_05 AC 133 ms
54,132 KB
testcase_06 AC 138 ms
54,208 KB
testcase_07 AC 138 ms
54,000 KB
testcase_08 AC 139 ms
54,088 KB
testcase_09 AC 136 ms
53,896 KB
testcase_10 AC 134 ms
54,192 KB
testcase_11 AC 136 ms
53,924 KB
testcase_12 AC 135 ms
54,124 KB
testcase_13 AC 133 ms
53,868 KB
testcase_14 AC 135 ms
53,796 KB
testcase_15 AC 131 ms
53,784 KB
testcase_16 AC 134 ms
53,868 KB
testcase_17 AC 133 ms
53,944 KB
testcase_18 AC 133 ms
53,876 KB
testcase_19 AC 136 ms
54,256 KB
testcase_20 AC 132 ms
53,836 KB
testcase_21 AC 134 ms
54,136 KB
testcase_22 AC 133 ms
54,116 KB
testcase_23 AC 134 ms
53,976 KB
testcase_24 AC 132 ms
54,212 KB
testcase_25 AC 132 ms
53,992 KB
testcase_26 AC 133 ms
54,064 KB
testcase_27 AC 132 ms
53,800 KB
testcase_28 AC 135 ms
53,732 KB
testcase_29 AC 135 ms
53,900 KB
testcase_30 AC 134 ms
53,736 KB
testcase_31 AC 133 ms
54,004 KB
testcase_32 AC 133 ms
53,784 KB
testcase_33 AC 134 ms
53,832 KB
testcase_34 AC 134 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long N = sc.nextLong();
    String ans = "O";
    long t = 0;
    if(N % 4 == 1) t = N ^ (N - 1);
    if(N % 4 == 2) t = N ^ (N - 1) ^ (N - 2);
    if(N % 4 == 0) t = N; 
    if(t == 0) ans = "X";
    System.out.println(ans);
  }
}
0