結果

問題 No.524 コインゲーム
ユーザー uafr_csuafr_cs
提出日時 2017-06-02 23:19:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 75,484 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-22 03:22:01
合計ジャッジ時間 7,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,808 KB
testcase_01 AC 128 ms
54,044 KB
testcase_02 AC 127 ms
53,964 KB
testcase_03 WA -
testcase_04 AC 127 ms
54,052 KB
testcase_05 AC 127 ms
54,144 KB
testcase_06 AC 114 ms
52,808 KB
testcase_07 AC 127 ms
54,076 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 129 ms
53,880 KB
testcase_12 AC 128 ms
54,000 KB
testcase_13 AC 121 ms
52,896 KB
testcase_14 AC 127 ms
53,840 KB
testcase_15 AC 128 ms
54,236 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 114 ms
53,044 KB
testcase_19 AC 124 ms
54,092 KB
testcase_20 WA -
testcase_21 AC 130 ms
54,228 KB
testcase_22 AC 124 ms
54,016 KB
testcase_23 WA -
testcase_24 AC 112 ms
53,012 KB
testcase_25 AC 125 ms
54,008 KB
testcase_26 AC 128 ms
54,080 KB
testcase_27 WA -
testcase_28 AC 126 ms
54,048 KB
testcase_29 AC 126 ms
54,064 KB
testcase_30 AC 126 ms
53,836 KB
testcase_31 AC 125 ms
53,932 KB
testcase_32 AC 126 ms
54,160 KB
testcase_33 AC 117 ms
52,864 KB
testcase_34 AC 126 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		System.out.println((N == 1 || Long.toBinaryString(N).contains("0")) ? "O" : "X");
	}
}
0