結果

問題 No.99 ジャンピング駒
ユーザー jimanojimano
提出日時 2018-02-11 17:08:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 3,421 ms
コンパイル使用メモリ 73,412 KB
実行使用メモリ 49,420 KB
最終ジャッジ日時 2024-04-28 14:05:28
合計ジャッジ時間 5,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0099 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int num = Integer.parseInt(br.readLine());
		String[] str = br.readLine().split(" ");

		System.out.println(num % 2 == 0 ? 0 : 1);
	}
}
0