結果

問題 No.524 コインゲーム
ユーザー SSRS
提出日時 2020-11-25 14:59:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 159 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 62,976 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 19:18:22
合計ジャッジ時間 1,915 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
	unsigned int N;
	cin >> N;
	if (N % 4 == 0){
		cout << 'O' << endl;
	} else {
		cout << 'X' << endl;
	}
}
0