結果
問題 | No.216 FAC |
ユーザー | yukirin |
提出日時 | 2016-01-23 23:26:08 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,085 bytes |
コンパイル時間 | 11,089 ms |
コンパイル使用メモリ | 233,784 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 20:49:47 |
合計ジャッジ時間 | 12,179 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | RE | - |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 1 ms
6,820 KB |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var rdr = bufio.NewReaderSize(os.Stdin, 1000000) func main() { sc.Split(bufio.ScanWords) n := nextInt() q, a := make([]int, n), make([]int, n) k := 0 for i := 0; i < n; i++ { q[i] = nextInt() } for i := 0; i < n; i++ { id := nextInt() if id == 0 { k += q[i] continue } a[id] += q[i] } sort.Ints(a) if k >= a[len(a)-1] { fmt.Println("YES") return } fmt.Println("NO") } func nextLine() string { sc.Scan() return sc.Text() } func nextInt() int { i, _ := strconv.Atoi(nextLine()) return i } func nextInt64() int64 { i, _ := strconv.ParseInt(nextLine(), 10, 64) return i } func nextUint64() uint64 { i, _ := strconv.ParseUint(nextLine(), 10, 64) return i } func nextFloat() float64 { f, _ := strconv.ParseFloat(nextLine(), 64) return f } func readLine() string { buf := make([]byte, 0, 1000000) for { l, p, e := rdr.ReadLine() if e != nil { panic(e) } buf = append(buf, l...) if !p { break } } return string(buf) }