結果

問題 No.524 コインゲーム
ユーザー uafr_csuafr_cs
提出日時 2017-06-02 23:14:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 76,112 KB
実行使用メモリ 56,172 KB
最終ジャッジ日時 2024-09-22 03:20:07
合計ジャッジ時間 8,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 116 ms
52,772 KB
testcase_02 AC 135 ms
52,920 KB
testcase_03 WA -
testcase_04 AC 135 ms
54,056 KB
testcase_05 AC 129 ms
54,008 KB
testcase_06 AC 127 ms
54,076 KB
testcase_07 AC 130 ms
54,112 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 131 ms
54,120 KB
testcase_12 AC 127 ms
54,096 KB
testcase_13 AC 129 ms
53,928 KB
testcase_14 AC 127 ms
54,224 KB
testcase_15 AC 116 ms
53,040 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 126 ms
54,040 KB
testcase_19 AC 129 ms
53,840 KB
testcase_20 WA -
testcase_21 AC 129 ms
53,928 KB
testcase_22 AC 127 ms
54,220 KB
testcase_23 WA -
testcase_24 AC 128 ms
53,824 KB
testcase_25 AC 128 ms
53,912 KB
testcase_26 AC 129 ms
54,308 KB
testcase_27 WA -
testcase_28 AC 129 ms
54,072 KB
testcase_29 AC 128 ms
54,084 KB
testcase_30 AC 127 ms
53,924 KB
testcase_31 AC 128 ms
53,980 KB
testcase_32 AC 127 ms
54,152 KB
testcase_33 AC 126 ms
53,824 KB
testcase_34 AC 129 ms
54,044 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(Long.toBinaryString(N).contains("0") ? "O" : "X");
	}
}
0