結果
問題 | No.131 マンハッタン距離 |
ユーザー | crazybbb3 |
提出日時 | 2017-01-29 23:33:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,711 bytes |
コンパイル時間 | 2,072 ms |
コンパイル使用メモリ | 77,988 KB |
実行使用メモリ | 50,436 KB |
最終ジャッジ日時 | 2024-06-06 09:33:02 |
合計ジャッジ時間 | 4,513 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
49,996 KB |
testcase_01 | AC | 56 ms
50,268 KB |
testcase_02 | AC | 55 ms
50,088 KB |
testcase_03 | AC | 55 ms
50,284 KB |
testcase_04 | AC | 54 ms
50,372 KB |
testcase_05 | AC | 55 ms
50,144 KB |
testcase_06 | AC | 55 ms
50,372 KB |
testcase_07 | AC | 55 ms
49,908 KB |
testcase_08 | AC | 57 ms
50,348 KB |
testcase_09 | WA | - |
testcase_10 | AC | 57 ms
50,028 KB |
testcase_11 | AC | 57 ms
50,240 KB |
testcase_12 | WA | - |
testcase_13 | AC | 57 ms
50,232 KB |
testcase_14 | AC | 58 ms
50,176 KB |
testcase_15 | AC | 56 ms
50,060 KB |
testcase_16 | AC | 56 ms
50,372 KB |
testcase_17 | AC | 56 ms
50,272 KB |
testcase_18 | AC | 57 ms
50,040 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 56 ms
49,872 KB |
testcase_22 | AC | 56 ms
50,236 KB |
testcase_23 | AC | 58 ms
50,088 KB |
testcase_24 | AC | 56 ms
50,268 KB |
testcase_25 | AC | 57 ms
50,052 KB |
testcase_26 | AC | 56 ms
50,316 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.Arrays; import java.util.StringTokenizer; public class Main { void solve() throws IOException { long x = nl(), y = nl(), d = nl(); out.println(Math.min(d + 1, Math.max(0, x + y - d + 1))); } 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(); } }