結果
問題 | No.126 2基のエレベータ |
ユーザー | fujisu |
提出日時 | 2015-02-01 03:51:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,449 bytes |
コンパイル時間 | 1,890 ms |
コンパイル使用メモリ | 77,952 KB |
実行使用メモリ | 50,812 KB |
最終ジャッジ日時 | 2024-06-23 04:47:12 |
合計ジャッジ時間 | 4,171 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 46 ms
50,300 KB |
testcase_04 | AC | 46 ms
50,196 KB |
testcase_05 | AC | 47 ms
50,268 KB |
testcase_06 | AC | 47 ms
49,932 KB |
testcase_07 | WA | - |
testcase_08 | AC | 46 ms
50,308 KB |
testcase_09 | AC | 43 ms
49,884 KB |
testcase_10 | AC | 46 ms
50,140 KB |
testcase_11 | AC | 46 ms
50,260 KB |
testcase_12 | WA | - |
testcase_13 | AC | 47 ms
49,812 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 48 ms
50,296 KB |
testcase_18 | AC | 47 ms
49,772 KB |
testcase_19 | AC | 49 ms
50,348 KB |
testcase_20 | WA | - |
testcase_21 | AC | 46 ms
49,904 KB |
testcase_22 | AC | 48 ms
49,944 KB |
testcase_23 | AC | 47 ms
49,932 KB |
testcase_24 | AC | 48 ms
50,196 KB |
testcase_25 | AC | 47 ms
50,308 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
import java.io.IOException; import java.util.InputMismatchException; public class Main { void run() { MyScanner sc = new MyScanner(); int a = sc.nextInt(); int b = sc.nextInt(); int s = sc.nextInt(); int sum = 0; if (Math.abs(a - s) <= Math.abs(b - s)) { sum += Math.abs(a - s); sum += s; } else { sum += Math.abs(b - s); if (a == 0) { sum += b - 1; sum += 2; } else { sum += Math.abs(a - b); sum += a; } } System.out.println(sum); } public static void main(String[] args) { new Main().run(); } public void mapDebug(int[][] a) { System.out.println("--------map display---------"); for (int i = 0; i < a.length; i++) { for (int j = 0; j < a[i].length; j++) { System.out.printf("%3d ", a[i][j]); } System.out.println(); } System.out.println("----------------------------" + '\n'); } class MyScanner { int read() { try { return System.in.read(); } catch (IOException e) { throw new InputMismatchException(); } } boolean isSpaceChar(int c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1; } boolean isEndline(int c) { return c == '\n' || c == '\r' || c == -1; } int nextInt() { return Integer.parseInt(next()); } int[] nextIntArray(int n) { int[] array = new int[n]; for (int i = 0; i < n; i++) array[i] = nextInt(); return array; } long nextLong() { return Long.parseLong(next()); } long[] nextLongArray(int n) { long[] array = new long[n]; for (int i = 0; i < n; i++) array[i] = nextLong(); return array; } double nextDouble() { return Double.parseDouble(next()); } double[] nextDoubleArray(int n) { double[] array = new double[n]; for (int i = 0; i < n; i++) array[i] = nextDouble(); return array; } String next() { int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isSpaceChar(c)); return res.toString(); } String[] nextStringArray(int n) { String[] array = new String[n]; for (int i = 0; i < n; i++) array[i] = next(); return array; } String nextLine() { int c = read(); while (isEndline(c)) c = read(); StringBuilder res = new StringBuilder(); do { res.appendCodePoint(c); c = read(); } while (!isEndline(c)); return res.toString(); } } }