結果

問題 No.7 プライムナンバーゲーム
ユーザー ReERishunReERishun
提出日時 2022-07-26 00:49:19
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 12,498 ms
コンパイル使用メモリ 211,916 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-22 12:11:28
合計ジャッジ時間 12,639 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 WA -
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main () {
	var num int

	fmt.Scan(&num)
	
	if num % 2 == 1 {
	    fmt.Println("Win")
	} else {
	    fmt.Println("Win")
	}

	return
}
0