結果
問題 | No.126 2基のエレベータ |
ユーザー | crazybbb3 |
提出日時 | 2017-01-30 22:46:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,910 bytes |
コンパイル時間 | 2,458 ms |
コンパイル使用メモリ | 78,676 KB |
実行使用メモリ | 50,644 KB |
最終ジャッジ日時 | 2024-06-06 09:45:23 |
合計ジャッジ時間 | 4,689 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
50,192 KB |
testcase_01 | AC | 51 ms
50,148 KB |
testcase_02 | WA | - |
testcase_03 | AC | 52 ms
50,400 KB |
testcase_04 | AC | 51 ms
50,420 KB |
testcase_05 | AC | 51 ms
50,400 KB |
testcase_06 | AC | 50 ms
50,272 KB |
testcase_07 | AC | 51 ms
50,312 KB |
testcase_08 | AC | 50 ms
50,260 KB |
testcase_09 | AC | 52 ms
50,576 KB |
testcase_10 | AC | 53 ms
50,492 KB |
testcase_11 | AC | 52 ms
50,620 KB |
testcase_12 | AC | 52 ms
50,292 KB |
testcase_13 | AC | 51 ms
50,468 KB |
testcase_14 | AC | 50 ms
50,464 KB |
testcase_15 | AC | 50 ms
50,448 KB |
testcase_16 | AC | 49 ms
49,944 KB |
testcase_17 | AC | 58 ms
50,644 KB |
testcase_18 | AC | 58 ms
50,440 KB |
testcase_19 | AC | 50 ms
50,488 KB |
testcase_20 | AC | 49 ms
49,876 KB |
testcase_21 | AC | 51 ms
50,516 KB |
testcase_22 | AC | 51 ms
50,564 KB |
testcase_23 | AC | 52 ms
50,380 KB |
testcase_24 | AC | 53 ms
50,056 KB |
testcase_25 | AC | 52 ms
50,372 KB |
testcase_26 | AC | 51 ms
50,412 KB |
testcase_27 | AC | 51 ms
50,204 KB |
testcase_28 | AC | 49 ms
50,480 KB |
testcase_29 | AC | 51 ms
49,944 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.math.BigInteger; import java.util.Arrays; import java.util.StringTokenizer; public class Main { void solve() throws IOException { int a = ni(), b = ni(), s = ni(); if (Math.abs(a - s) > Math.abs(b - s)) { out.println(Math.abs(b - s) + Math.min(s - 1 + (a == 0 ? 2 : a), Math.abs(a - s) + (a == 0 ? 1 : a))); } else { out.println(Math.abs(a - s) + s); } } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } static BufferedReader in; static PrintWriter out; static StringTokenizer tok; public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }