結果
問題 | No.281 門松と魔法(1) |
ユーザー | fmhr |
提出日時 | 2016-05-23 02:42:56 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,704 bytes |
コンパイル時間 | 13,858 ms |
コンパイル使用メモリ | 235,932 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 20:46:00 |
合計ジャッジ時間 | 15,260 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,820 KB |
testcase_19 | AC | 1 ms
6,820 KB |
testcase_20 | AC | 1 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 1 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 1 ms
6,820 KB |
testcase_27 | AC | 1 ms
6,820 KB |
testcase_28 | AC | 1 ms
6,816 KB |
testcase_29 | AC | 1 ms
6,816 KB |
testcase_30 | AC | 1 ms
6,820 KB |
testcase_31 | AC | 1 ms
6,816 KB |
testcase_32 | AC | 1 ms
6,816 KB |
testcase_33 | AC | 1 ms
6,820 KB |
testcase_34 | AC | 1 ms
6,816 KB |
testcase_35 | AC | 1 ms
6,816 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,816 KB |
testcase_38 | AC | 2 ms
6,816 KB |
testcase_39 | AC | 1 ms
6,816 KB |
testcase_40 | AC | 1 ms
6,816 KB |
testcase_41 | AC | 2 ms
6,820 KB |
testcase_42 | AC | 1 ms
6,820 KB |
testcase_43 | AC | 1 ms
6,816 KB |
testcase_44 | AC | 1 ms
6,816 KB |
testcase_45 | AC | 1 ms
6,820 KB |
testcase_46 | AC | 2 ms
6,816 KB |
testcase_47 | AC | 1 ms
6,820 KB |
testcase_48 | AC | 1 ms
6,816 KB |
testcase_49 | AC | 2 ms
6,816 KB |
testcase_50 | AC | 2 ms
6,820 KB |
testcase_51 | AC | 2 ms
6,816 KB |
testcase_52 | AC | 1 ms
6,816 KB |
testcase_53 | AC | 2 ms
6,816 KB |
testcase_54 | AC | 1 ms
6,820 KB |
testcase_55 | AC | 1 ms
6,816 KB |
testcase_56 | AC | 1 ms
6,816 KB |
ソースコード
package main import ( "fmt" ) func main() { solve281() } func solve281() { var d, a, b, c int fmt.Scan(&d, &a, &b, &c) if isKadomatsu(a, b, c) { fmt.Println("0") return } else if d == 0 { // d == 0 のとき, なにも操作できない fmt.Println("-1") return } var cnt1, cnt2 int // 真ん中を下げる用意 b1 := b // 左右のどちらかが0だと真ん中を下げるケースは存在しない if a == 0 || c == 0 { cnt1 = -1 } else { // 左右a,cが同値のときは先に一方(a)を下げておく aa := a if a == c { cnt1++ aa = a - d } if !isKadomatsu(aa,b,c){ foo := ((b - min(aa, c)) / d) + 1 if foo > 0 { cnt1 += foo b1 = max(0, b1-d*foo) } if !isKadomatsu(aa, b1, c) { cnt1 = -1 } } } // 左右を下げる a1 := a c1 := c if b == 0 { cnt2 = -1 } else { if a > 0 { bar := ((a - b) / d) + 1 if bar > 0 { cnt2 = bar a1 = max(0, a1-d*bar) } } if c > 0 { foobar := ((c - b) / d) + 1 if foobar > 0 { cnt2 += foobar c1 = max(0, c1-d*foobar) } } if !isKadomatsu(a1, b, c1) { cnt2 = -1 } } if cnt1 == -1 && cnt2 == -1 { fmt.Println("-1") } else if cnt1 == -1 { fmt.Println(cnt2) } else if cnt2 == -1 { fmt.Println(cnt1) } else { fmt.Println(min(cnt1, cnt2)) } //fmt.Println(cnt1, cnt2) //fmt.Println(a,b1,c) //fmt.Println(a1,b1,c1) return } // 門松判定 func isKadomatsu(a, b, c int) bool { if a < b && b > c && a != c { return true } else if a > b && b < c && a != c { return true } return false } func max(a, b int) int { if a < b { return b } return a } func min(a, b int) int { if a > b { return b } return a }