結果

問題 No.2415 偶数判定!Nafmoくん
ユーザー 木山木山
提出日時 2023-08-12 13:36:46
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 13,391 ms
コンパイル使用メモリ 222,124 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-19 15:43:17
合計ジャッジ時間 12,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 WA -
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 WA -
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	in := bufio.NewReader(os.Stdin)
	var A, B int
	anc := "Odd"

	fmt.Fscan(in, &A, &B)
	if A%2 == 0 || B%2 == 0 {
		anc = "Even"
	}

	fmt.Println(anc)
}
0