結果
問題 | No.281 門松と魔法(1) |
ユーザー | uafr_cs |
提出日時 | 2015-09-18 23:25:39 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,362 bytes |
コンパイル時間 | 2,409 ms |
コンパイル使用メモリ | 77,416 KB |
実行使用メモリ | 61,160 KB |
最終ジャッジ日時 | 2024-11-06 19:28:32 |
合計ジャッジ時間 | 9,795 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
61,056 KB |
testcase_01 | AC | 137 ms
53,944 KB |
testcase_02 | AC | 135 ms
53,972 KB |
testcase_03 | AC | 136 ms
53,976 KB |
testcase_04 | AC | 136 ms
54,020 KB |
testcase_05 | AC | 134 ms
54,040 KB |
testcase_06 | AC | 135 ms
54,024 KB |
testcase_07 | AC | 138 ms
54,184 KB |
testcase_08 | AC | 135 ms
54,200 KB |
testcase_09 | AC | 136 ms
54,028 KB |
testcase_10 | AC | 137 ms
54,156 KB |
testcase_11 | AC | 137 ms
53,892 KB |
testcase_12 | AC | 137 ms
54,224 KB |
testcase_13 | AC | 132 ms
53,828 KB |
testcase_14 | AC | 135 ms
54,076 KB |
testcase_15 | WA | - |
testcase_16 | AC | 135 ms
53,952 KB |
testcase_17 | WA | - |
testcase_18 | AC | 135 ms
54,184 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 137 ms
53,888 KB |
testcase_23 | WA | - |
testcase_24 | AC | 134 ms
54,116 KB |
testcase_25 | AC | 136 ms
54,128 KB |
testcase_26 | AC | 137 ms
53,840 KB |
testcase_27 | AC | 138 ms
54,092 KB |
testcase_28 | AC | 141 ms
54,152 KB |
testcase_29 | AC | 138 ms
53,660 KB |
testcase_30 | AC | 136 ms
53,984 KB |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
ソースコード
import java.util.Arrays; import java.util.HashSet; import java.util.LinkedList; import java.util.Scanner; import java.util.Set; public class Main { public static boolean is_valid_kadomatsu(long h1, long h2, long h3){ if(h1 == h2 || h2 == h3 || h3 == h1){ return false; } if(h1 < h2 && h2 > h3){ return true; }else if(h1 > h2 && h2 < h3){ return true; } return false; } public static int answer = 15; public static void dfs(int count, long d, long h1, long h2, long h3){ if(answer < count){ return; } if(h1 < h2 && h2 < h3){ while(h2 < h3){ h3 = Math.max(0, h3 - d); count++; } } if(h1 > h2 && h2 > h3){ while(h2 < h1){ h1 = Math.max(0, h1 - d); count++; } } if(is_valid_kadomatsu(h1, h2, h3)){ answer = Math.min(answer, count); return; } if(h1 != 0){ dfs(count + 1, d, Math.max(0, h1 - d), h2, h3); } if(h3 != 0){ dfs(count + 1, d, h1, h2, Math.max(0, h3 - d)); } if(h2 != 0){ dfs(count + 1, d, h1, Math.max(0, h2 - d), h3); } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); final long d = sc.nextLong(); final long h1 = sc.nextLong(); final long h2 = sc.nextLong(); final long h3 = sc.nextLong(); dfs(0, d, h1, h2, h3); System.out.println(answer == 15 ? -1 : answer); } }