結果

問題 No.24 数当てゲーム
ユーザー tsuchinagatsuchinaga
提出日時 2019-05-16 11:24:19
言語 Go
(1.22.1)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 12,236 ms
コンパイル使用メモリ 221,860 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 06:49:11
合計ジャッジ時間 12,943 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package main

import "fmt"

func main() {
	var n, a, b, c, d int
	var r string
	_, _ = fmt.Scan(&n)

	nums := make([]int, 10)

	for i := 0; i < n; i++ {
		_, _ = fmt.Scan(&a, &b, &c, &d, &r)

		if r == "YES" {
			for j := range nums {
				if j != a && j != b && j != c && j != d {
					nums[j] = 1
				}
			}
		} else {
			nums[a] = 1
			nums[b] = 1
			nums[c] = 1
			nums[d] = 1
		}
	}

	for k, v := range nums {
		if v == 0 {
			fmt.Println(k)
			break
		}
	}
}
0