結果
問題 | No.99 ジャンピング駒 |
ユーザー | いともたやすく行われるえげつない行為 |
提出日時 | 2017-02-23 15:55:36 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 65 ms / 5,000 ms |
コード長 | 422 bytes |
コンパイル時間 | 12,713 ms |
コンパイル使用メモリ | 220,088 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 20:53:41 |
合計ジャッジ時間 | 13,030 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
6,816 KB |
testcase_01 | AC | 64 ms
6,944 KB |
testcase_02 | AC | 64 ms
6,940 KB |
testcase_03 | AC | 64 ms
6,944 KB |
testcase_04 | AC | 65 ms
6,940 KB |
testcase_05 | AC | 63 ms
6,940 KB |
ソースコード
package main import ( "bufio" "fmt" "io" "os" ) func solve(in io.Reader, out, err io.Writer) { num, result := 0, 0 fmt.Fscan(in, &num) for temp, i := 0, 0; i < num; i++ { fmt.Fscan(in, &temp) if temp&1 == 0 { result += 2 } result-- } if result < 0 { result = -result } fmt.Fprintln(out, result) } func main() { br := bufio.NewReaderSize(os.Stdin, int(1e6)) solve(br, os.Stdout, os.Stderr) }