結果

問題 No.524 コインゲーム
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-11 14:12:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-10-07 14:55:04
合計ジャッジ時間 8,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,632 KB
testcase_01 AC 143 ms
41,112 KB
testcase_02 AC 136 ms
41,276 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 141 ms
41,068 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 134 ms
41,360 KB
testcase_12 AC 136 ms
41,336 KB
testcase_13 AC 139 ms
41,484 KB
testcase_14 AC 139 ms
41,244 KB
testcase_15 AC 138 ms
41,332 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 138 ms
41,528 KB
testcase_25 AC 130 ms
41,252 KB
testcase_26 AC 130 ms
41,160 KB
testcase_27 WA -
testcase_28 AC 137 ms
41,500 KB
testcase_29 AC 141 ms
41,152 KB
testcase_30 AC 135 ms
41,176 KB
testcase_31 AC 137 ms
41,424 KB
testcase_32 AC 136 ms
41,420 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
    if(N % 4 == 2) t = N ^ (N - 1);
    if(N % 4 == 3) t = N ^ (N - 1) ^ (N - 2); 
    if(t == 0) ans = "X";
    System.out.println(ans);
  }
}
0