結果

問題 No.99 ジャンピング駒
ユーザー a_tena_ten
提出日時 2016-03-27 22:19:25
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 94 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 15,056 KB
最終ジャッジ日時 2024-04-10 03:56:22
合計ジャッジ時間 1,568 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
15,052 KB
testcase_01 AC 56 ms
15,056 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

N=input()
X=map(int,raw_input().split())

if N%2==0:
	print 0
else:
	print 1
	
0