結果
問題 | No.131 マンハッタン距離 |
ユーザー | kanra661 |
提出日時 | 2015-01-21 00:16:48 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 653 bytes |
コンパイル時間 | 2,817 ms |
コンパイル使用メモリ | 74,188 KB |
実行使用メモリ | 41,292 KB |
最終ジャッジ日時 | 2024-06-22 23:27:58 |
合計ジャッジ時間 | 7,893 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
41,292 KB |
testcase_01 | AC | 101 ms
40,172 KB |
testcase_02 | AC | 114 ms
40,768 KB |
testcase_03 | AC | 113 ms
41,248 KB |
testcase_04 | AC | 96 ms
39,524 KB |
testcase_05 | AC | 101 ms
39,744 KB |
testcase_06 | AC | 111 ms
40,988 KB |
testcase_07 | AC | 100 ms
39,860 KB |
testcase_08 | AC | 110 ms
40,848 KB |
testcase_09 | WA | - |
testcase_10 | AC | 114 ms
41,020 KB |
testcase_11 | AC | 115 ms
41,004 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 101 ms
40,268 KB |
testcase_15 | AC | 111 ms
40,668 KB |
testcase_16 | AC | 118 ms
40,800 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 109 ms
40,860 KB |
testcase_22 | AC | 102 ms
39,948 KB |
testcase_23 | AC | 767 ms
40,192 KB |
testcase_24 | WA | - |
testcase_25 | AC | 106 ms
40,272 KB |
testcase_26 | AC | 100 ms
40,200 KB |
ソースコード
import java.util.Scanner; public class No_103 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int d = sc.nextInt(); int count = 0; if (x + y < d) { System.out.println(count); return; } int tx = 0; int ty = 0; if(x >= y){ if(tx >= d){ tx = d; }else{ tx = x; ty = d - x; } while(tx >= 0 && ty <= y){ tx-=1; ty+=1; count+=1; } }else{ if(ty >= d){ ty = d; }else{ ty = y; tx = d - y; } while(ty >= 0 && tx <= x){ ty-=1; tx+=1; count+=1; } } System.out.println(count); } }