結果

問題 No.85 TVザッピング(1)
ユーザー yuki2006
提出日時 2015-03-10 06:19:41
言語 Go1.4
(1.4.2)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 33,064 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 00:10:58
合計ジャッジ時間 1,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 19 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

var s = bufio.NewScanner(os.Stdin)

func next() string {
	s.Split(bufio.ScanWords)
	s.Scan()
	return s.Text()
}

func nextInt() int {
	i, e := strconv.Atoi(next())
	if e != nil {
		panic(e)
	}
	return i
}
func nextLong() int64 {
	i, e := strconv.ParseInt(next(), 10, 64)
	if e != nil {
		panic(e)
	}
	return i
}

func main() {
	N := nextInt()
	M := nextInt()
	_ = nextInt()

	out := "YES"
	if N*M == 2 {
		//nop
	}else if (N%2 == 1 || M%2 == 1) {
		out = "NO"
	}else {
		//nop
	}
	fmt.Println(out)

}

0