結果

問題 No.358 も~っと!門松列
ユーザー 37zigen37zigen
提出日時 2016-04-17 22:43:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 721 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-10-04 10:39:58
合計ジャッジ時間 6,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,104 KB
testcase_01 AC 123 ms
54,144 KB
testcase_02 AC 110 ms
53,060 KB
testcase_03 AC 132 ms
54,104 KB
testcase_04 AC 127 ms
54,200 KB
testcase_05 AC 125 ms
53,972 KB
testcase_06 AC 128 ms
53,852 KB
testcase_07 AC 123 ms
54,080 KB
testcase_08 AC 110 ms
53,168 KB
testcase_09 AC 121 ms
54,044 KB
testcase_10 AC 122 ms
53,672 KB
testcase_11 AC 121 ms
54,008 KB
testcase_12 AC 128 ms
53,864 KB
testcase_13 AC 114 ms
52,984 KB
testcase_14 AC 127 ms
53,912 KB
testcase_15 AC 124 ms
53,844 KB
testcase_16 AC 127 ms
53,792 KB
testcase_17 AC 128 ms
53,828 KB
testcase_18 AC 124 ms
54,040 KB
testcase_19 AC 125 ms
54,132 KB
testcase_20 AC 124 ms
54,244 KB
testcase_21 AC 113 ms
52,824 KB
testcase_22 AC 124 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int a1=sc.nextInt();
		int a2=sc.nextInt();
		int a3=sc.nextInt();
		int max=Math.max(a1, a2);
		max=Math.max(max, a3);
		int count=0;
		for(int i=1001;i>=1;i--){
			if(judge(a1,a2,a3,i)){
				if(i==1001){
					System.out.println("INF");
					return;
				}
				count++;
			}
		}
		System.out.println(count);
			
	}
	//カラマツか判断
	boolean judge(int a1,int a2,int a3,int p){
		a1%=p;
		a2%=p;
		a3%=p;
		if(!(a1!=a2&&a2!=a3&&a3!=a1))return false;
		if(a1>a2&&a2>a3)return false;
		if(a1<a2&&a2<a3)return false;
		return true;
	}
}
0