結果
問題 | No.126 2基のエレベータ |
ユーザー | 37zigen |
提出日時 | 2020-03-22 02:17:52 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 2,507 ms |
コンパイル使用メモリ | 78,168 KB |
実行使用メモリ | 54,588 KB |
最終ジャッジ日時 | 2024-06-06 14:54:37 |
合計ジャッジ時間 | 7,363 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 120 ms
41,200 KB |
testcase_04 | AC | 116 ms
40,212 KB |
testcase_05 | AC | 122 ms
41,224 KB |
testcase_06 | AC | 124 ms
41,428 KB |
testcase_07 | WA | - |
testcase_08 | AC | 132 ms
41,116 KB |
testcase_09 | AC | 131 ms
40,848 KB |
testcase_10 | AC | 124 ms
41,696 KB |
testcase_11 | AC | 120 ms
40,364 KB |
testcase_12 | WA | - |
testcase_13 | AC | 131 ms
41,456 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 126 ms
41,312 KB |
testcase_18 | AC | 123 ms
41,528 KB |
testcase_19 | AC | 129 ms
41,412 KB |
testcase_20 | WA | - |
testcase_21 | AC | 126 ms
41,388 KB |
testcase_22 | AC | 128 ms
41,260 KB |
testcase_23 | AC | 127 ms
40,996 KB |
testcase_24 | AC | 125 ms
41,132 KB |
testcase_25 | AC | 116 ms
40,836 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
import java.io.FileNotFoundException; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) throws FileNotFoundException { long t = System.currentTimeMillis(); new Main().run(); System.err.println(System.currentTimeMillis() - t); } void run() { Scanner sc = new Scanner(System.in); int A=sc.nextInt(); int B=sc.nextInt(); int S=sc.nextInt(); if(Math.abs(S-A)<=Math.abs(S-B)) { System.out.println(Math.abs(S-A)+Math.abs(S-0)); }else { if(A>0) { System.out.println(Math.abs(S-B)+Math.abs(A-B)+Math.abs(A)); }else { System.out.println(Math.abs(S-B)+Math.abs(B-1)+2); } } } static void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }