結果

問題 No.281 門松と魔法(1)
ユーザー fal_rndfal_rnd
提出日時 2016-10-30 01:14:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 56,180 KB
最終ジャッジ日時 2024-05-03 19:42:10
合計ジャッジ時間 10,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,972 KB
testcase_01 AC 115 ms
54,124 KB
testcase_02 WA -
testcase_03 AC 113 ms
53,956 KB
testcase_04 AC 118 ms
53,952 KB
testcase_05 AC 107 ms
52,760 KB
testcase_06 AC 97 ms
52,472 KB
testcase_07 AC 112 ms
53,992 KB
testcase_08 AC 118 ms
54,040 KB
testcase_09 AC 111 ms
53,292 KB
testcase_10 AC 112 ms
53,920 KB
testcase_11 AC 120 ms
53,912 KB
testcase_12 AC 131 ms
53,956 KB
testcase_13 AC 118 ms
54,128 KB
testcase_14 AC 121 ms
54,148 KB
testcase_15 AC 106 ms
53,096 KB
testcase_16 AC 104 ms
52,996 KB
testcase_17 AC 112 ms
53,904 KB
testcase_18 AC 119 ms
54,300 KB
testcase_19 AC 106 ms
53,028 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 110 ms
53,292 KB
testcase_23 AC 118 ms
54,032 KB
testcase_24 AC 101 ms
53,060 KB
testcase_25 WA -
testcase_26 AC 107 ms
52,944 KB
testcase_27 AC 123 ms
54,000 KB
testcase_28 AC 124 ms
54,164 KB
testcase_29 AC 121 ms
53,912 KB
testcase_30 WA -
testcase_31 AC 101 ms
52,760 KB
testcase_32 AC 100 ms
53,012 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 115 ms
53,912 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 112 ms
53,700 KB
testcase_47 AC 103 ms
52,816 KB
testcase_48 AC 101 ms
54,240 KB
testcase_49 AC 103 ms
53,040 KB
testcase_50 AC 115 ms
54,208 KB
testcase_51 WA -
testcase_52 AC 101 ms
52,604 KB
testcase_53 AC 118 ms
54,008 KB
testcase_54 WA -
testcase_55 AC 121 ms
53,956 KB
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class C{
	static Scanner s=new Scanner(System.in);
	static long d,l,c,r;
	public static void main(String[] args){
		d=s.nextLong();
		l=s.nextLong();
		c=s.nextLong();
		r=s.nextLong();
		if(d==0&&!kadomatsued()){
			System.out.println(-1);
		}else if(kadomatsued()){
			System.out.println(0);
		}else{
			System.out.println(Math.min(Math.abs(l-c), Math.abs(r-c))/d+1);
		}
	}
	static boolean kadomatsued(){
		return (c>l&&c>r)||(c<l&&c<r);
	}
}
0