結果
問題 | No.965 門松列が嫌い |
ユーザー | uwi |
提出日時 | 2020-01-13 19:30:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,125 bytes |
コンパイル時間 | 3,623 ms |
コンパイル使用メモリ | 77,784 KB |
実行使用メモリ | 54,404 KB |
最終ジャッジ日時 | 2024-06-01 09:30:17 |
合計ジャッジ時間 | 5,623 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,220 KB |
testcase_01 | AC | 132 ms
54,136 KB |
testcase_02 | AC | 131 ms
54,196 KB |
testcase_03 | AC | 130 ms
54,404 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 130 ms
53,812 KB |
testcase_08 | WA | - |
testcase_09 | AC | 136 ms
54,316 KB |
ソースコード
package contest200113; import java.io.PrintWriter; import java.util.Arrays; import java.util.Scanner; // 片手落ちマン2 public class B2 { static Scanner in; static PrintWriter out; static String INPUT = ""; static void solve() { int A = ni(), B = ni(), C = ni(); if(!(1 <= A && A <= 1000000000))throw new RuntimeException(); if(!(1 <= B && B <= 1000000000))throw new RuntimeException(); if(!(1 <= C && C <= 1000000000))throw new RuntimeException(); if(!(B < A && A < C || C < A && A < B || B < C && C < A || A < C && C < B)) { throw new RuntimeException(); } out.println(Math.min(Math.abs(A-B), Math.abs(B-C))); } public static void main(String[] args) throws Exception { in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT); out = new PrintWriter(System.out); solve(); out.flush(); } static int ni() { return Integer.parseInt(in.next()); } static long nl() { return Long.parseLong(in.next()); } static double nd() { return Double.parseDouble(in.next()); } static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); } }