結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | yukirin |
提出日時 | 2016-02-28 16:13:14 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,014 bytes |
コンパイル時間 | 10,669 ms |
コンパイル使用メモリ | 223,084 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 23:07:10 |
合計ジャッジ時間 | 14,073 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
5,248 KB |
testcase_01 | AC | 139 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var rdr = bufio.NewReaderSize(os.Stdin, 1000000) func main() { sc.Split(bufio.ScanWords) t, a, b := nextInt(), nextInt(), nextInt() c := a if b > a { c = b } if c > t { fmt.Println("NO") return } fmt.Println("YES") around := t - c for i := 0; i < around/2; i++ { fmt.Println("v") fmt.Println("^") } m := a if b < a { m = b } if around%2 == 1 && m != 0 { m-- fmt.Println(">") fmt.Println("^") } for i := 0; i < m; i++ { fmt.Println(">^") } if around%2 == 1 && m != -1 { m++ } if m == 0 && around%2 == 1 { if a > 0 { fmt.Println("<") fmt.Println(">^") a++ } else { fmt.Println("v") fmt.Println(">^") b++ } } for i := 0; i < m-a; i++ { fmt.Println("^") } for i := 0; i < m-b; i++ { fmt.Println(">") } return } func nextLine() string { sc.Scan() return sc.Text() } func nextInt() int { i, _ := strconv.Atoi(nextLine()) return i }