結果
| 問題 | No.99 ジャンピング駒 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-11 17:08:48 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 414 bytes |
| 記録 | |
| コンパイル時間 | 3,586 ms |
| コンパイル使用メモリ | 74,496 KB |
| 実行使用メモリ | 60,712 KB |
| 最終ジャッジ日時 | 2024-11-17 06:34:09 |
| 合計ジャッジ時間 | 5,375 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 4 |
ソースコード
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);
}
}