結果
問題 | No.1208 anti primenumber game |
ユーザー | ccppjsrb |
提出日時 | 2020-09-01 21:08:12 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,773 bytes |
コンパイル時間 | 13,008 ms |
コンパイル使用メモリ | 238,936 KB |
実行使用メモリ | 13,532 KB |
最終ジャッジ日時 | 2024-11-20 16:57:16 |
合計ジャッジ時間 | 16,070 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 19 ms
6,912 KB |
testcase_16 | AC | 19 ms
7,040 KB |
testcase_17 | AC | 18 ms
6,912 KB |
testcase_18 | AC | 18 ms
7,040 KB |
testcase_19 | AC | 18 ms
7,040 KB |
testcase_20 | AC | 18 ms
7,040 KB |
testcase_21 | WA | - |
testcase_22 | AC | 26 ms
7,040 KB |
testcase_23 | AC | 21 ms
6,912 KB |
testcase_24 | WA | - |
testcase_25 | AC | 47 ms
13,164 KB |
testcase_26 | AC | 71 ms
7,424 KB |
testcase_27 | AC | 71 ms
7,424 KB |
testcase_28 | AC | 79 ms
12,784 KB |
testcase_29 | AC | 79 ms
12,732 KB |
testcase_30 | WA | - |
testcase_31 | AC | 24 ms
6,912 KB |
testcase_32 | AC | 19 ms
7,040 KB |
testcase_33 | AC | 21 ms
6,912 KB |
testcase_34 | WA | - |
testcase_35 | AC | 18 ms
6,912 KB |
testcase_36 | AC | 22 ms
8,652 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 61 ms
9,328 KB |
testcase_40 | AC | 70 ms
7,552 KB |
testcase_41 | AC | 24 ms
7,168 KB |
testcase_42 | AC | 36 ms
12,368 KB |
testcase_43 | WA | - |
testcase_44 | AC | 26 ms
7,168 KB |
testcase_45 | WA | - |
testcase_46 | AC | 24 ms
7,840 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func configure(scanner *bufio.Scanner) { scanner.Split(bufio.ScanWords) scanner.Buffer(make([]byte, 1000005), 1000005) } func getNextString(scanner *bufio.Scanner) string { scanned := scanner.Scan() if !scanned { panic("scan failed") } return scanner.Text() } func getNextInt(scanner *bufio.Scanner) int { i, _ := strconv.Atoi(getNextString(scanner)) return i } func getNextInt64(scanner *bufio.Scanner) int64 { i, _ := strconv.ParseInt(getNextString(scanner), 10, 64) return i } func getNextFloat64(scanner *bufio.Scanner) float64 { i, _ := strconv.ParseFloat(getNextString(scanner), 64) return i } func main() { fp := os.Stdin wfp := os.Stdout extra := 0 if os.Getenv("I") == "IronMan" { fp, _ = os.Open(os.Getenv("END_GAME")) extra = 100 } scanner := bufio.NewScanner(fp) configure(scanner) writer := bufio.NewWriter(wfp) defer func() { r := recover() if r != nil { fmt.Fprintln(writer, r) } writer.Flush() }() solve(scanner, writer) for i := 0; i < extra; i++ { fmt.Fprintln(writer, "-----------------------------------") solve(scanner, writer) } } func solve(scanner *bufio.Scanner, writer *bufio.Writer) { n := getNextInt(scanner) m := getNextInt64(scanner) aa := make([]int64, 0) for i := 0; i < n; i++ { a := getNextInt64(scanner) if a == 1 { aa = append(aa, a-m) continue } if m == 0 { aa = append(aa, a) continue } aa = append(aa, a-1) aa = append(aa, 1-m) } sort.Slice(aa, func(i, j int) bool { return aa[i] > aa[j] }) var f, s int64 for i := 0; i < n; i++ { if i&1 == 0 { f += aa[i] continue } s += aa[i] } if f <= s { fmt.Fprintln(writer, "Second") return } fmt.Fprintln(writer, "First") }