結果
問題 |
No.131 マンハッタン距離
|
ユーザー |
![]() |
提出日時 | 2015-02-04 23:52:55 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 537 bytes |
コンパイル時間 | 3,637 ms |
コンパイル使用メモリ | 75,148 KB |
実行使用メモリ | 41,576 KB |
最終ジャッジ日時 | 2024-06-23 07:35:11 |
合計ジャッジ時間 | 10,506 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 9 WA * 15 |
ソースコード
import java.util.Scanner; public class P131 { public static void main(String args[]) { Scanner sc = new Scanner(System.in); String n = sc.nextLine(); String[] nstrs = n.split(" "); int nint[] = new int[3]; for (int a=0;a<3;a++) { nint[a] = Integer.parseInt(nstrs[a]); } int x1 = nint[0]; int y1 = nint[1]; int d = nint[2]; int x; int ans = 0; if (d >= (x1+y1)) { } else { for (x=d;x>=(d-y1);x--) { if ((d-x)>=0 && y1>=(d-x)) { ans++; } } } System.out.println(ans); } }