結果

問題 No.281 門松と魔法(1)
ユーザー 37zigen37zigen
提出日時 2020-04-01 18:33:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 1,452 bytes
コンパイル時間 2,708 ms
コンパイル使用メモリ 78,956 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-06-27 02:45:48
合計ジャッジ時間 11,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,184 KB
testcase_01 AC 128 ms
54,312 KB
testcase_02 AC 128 ms
54,124 KB
testcase_03 AC 126 ms
53,972 KB
testcase_04 AC 130 ms
54,332 KB
testcase_05 AC 129 ms
53,820 KB
testcase_06 AC 132 ms
53,676 KB
testcase_07 AC 130 ms
53,860 KB
testcase_08 AC 127 ms
53,852 KB
testcase_09 AC 132 ms
53,836 KB
testcase_10 AC 116 ms
52,996 KB
testcase_11 AC 132 ms
54,144 KB
testcase_12 AC 132 ms
53,780 KB
testcase_13 AC 128 ms
54,184 KB
testcase_14 AC 128 ms
53,984 KB
testcase_15 AC 127 ms
53,920 KB
testcase_16 AC 127 ms
54,196 KB
testcase_17 AC 115 ms
52,980 KB
testcase_18 AC 132 ms
54,308 KB
testcase_19 AC 131 ms
53,668 KB
testcase_20 AC 132 ms
53,956 KB
testcase_21 AC 130 ms
54,400 KB
testcase_22 AC 128 ms
53,776 KB
testcase_23 AC 130 ms
53,760 KB
testcase_24 AC 127 ms
54,484 KB
testcase_25 AC 129 ms
53,796 KB
testcase_26 AC 130 ms
54,256 KB
testcase_27 AC 131 ms
53,800 KB
testcase_28 AC 131 ms
54,196 KB
testcase_29 AC 130 ms
54,092 KB
testcase_30 AC 131 ms
54,204 KB
testcase_31 AC 132 ms
54,204 KB
testcase_32 AC 130 ms
53,920 KB
testcase_33 AC 131 ms
54,136 KB
testcase_34 AC 128 ms
54,068 KB
testcase_35 AC 128 ms
54,088 KB
testcase_36 AC 131 ms
53,820 KB
testcase_37 AC 132 ms
54,248 KB
testcase_38 AC 130 ms
53,996 KB
testcase_39 AC 128 ms
53,816 KB
testcase_40 AC 114 ms
52,952 KB
testcase_41 AC 130 ms
53,568 KB
testcase_42 AC 128 ms
53,876 KB
testcase_43 AC 130 ms
53,788 KB
testcase_44 AC 128 ms
53,760 KB
testcase_45 AC 133 ms
53,916 KB
testcase_46 AC 128 ms
53,844 KB
testcase_47 AC 129 ms
54,176 KB
testcase_48 AC 130 ms
54,236 KB
testcase_49 AC 127 ms
54,020 KB
testcase_50 AC 129 ms
54,204 KB
testcase_51 AC 128 ms
54,044 KB
testcase_52 AC 116 ms
52,828 KB
testcase_53 AC 129 ms
54,192 KB
testcase_54 AC 130 ms
54,216 KB
testcase_55 AC 132 ms
54,064 KB
testcase_56 AC 131 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.PriorityQueue;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	boolean check(long a,long b,long c) {
		return a>=0&&b>=0&&c>=0&&a!=b&&b!=c&&c!=a&&(b==Math.max(a, Math.max(b, c))||b==Math.min(a, Math.min(b, c)));
	}
	
	int max(long a,long b,long c,long d) {
		int ret=0;
		if(c>=b) {
			long q=(c+1-b+d-1)/d;
			ret+=q;
			c=Math.max(0,c-q*d);
		}
		if(a>=b) {
			long q=(a+1-b+d-1)/d;
			ret+=q;
			a=Math.max(0,a-q*d);
		}
		if(a==c) {
			ret++;
			c=Math.max(0, c-d);
		}
		if(check(a, b, c))return ret;
		else return -1;
	}
	
	int min(long a,long b,long c,long d) {
		int ret=0;
		if(a>c) {
			a^=c;c^=a;a^=c;
		}
		if(a==c) {
			ret++;
			a=Math.max(0, a-d);
		}
		if(a<=b) {
			long q=(b+1-a+d-1)/d;
			ret+=q;
			b=Math.max(0,b-q*d);
		}
		if(check(a, b, c))return ret;
		else return -1;
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		long d=sc.nextLong();
		long a=sc.nextLong();
		long b=sc.nextLong();
		long c=sc.nextLong();
		if(d==0) {
			if(!check(a,b,c))System.out.println(-1);
			else System.out.println(0);
			return;
		}
		long INF=Long.MAX_VALUE/3;
		long ans=INF;
		if(min(a, b, c, d)!=-1)ans=Math.min(ans, min(a,b,c,d));
		if(max(a, b, c, d)!=-1)ans=Math.min(ans, max(a,b,c,d));
		System.out.println(ans==INF?-1:ans);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0