結果

問題 No.358 も~っと!門松列
ユーザー fjafjafjafjafjafja
提出日時 2017-09-17 23:12:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 794 bytes
コンパイル時間 3,252 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-11-08 02:00:58
合計ジャッジ時間 7,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,224 KB
testcase_01 AC 110 ms
40,232 KB
testcase_02 AC 125 ms
41,108 KB
testcase_03 AC 127 ms
41,112 KB
testcase_04 AC 124 ms
41,200 KB
testcase_05 AC 126 ms
41,328 KB
testcase_06 AC 128 ms
41,044 KB
testcase_07 AC 124 ms
41,184 KB
testcase_08 AC 126 ms
41,224 KB
testcase_09 AC 128 ms
41,184 KB
testcase_10 AC 110 ms
39,976 KB
testcase_11 AC 126 ms
41,200 KB
testcase_12 AC 113 ms
40,284 KB
testcase_13 AC 112 ms
39,904 KB
testcase_14 AC 122 ms
39,828 KB
testcase_15 AC 128 ms
41,124 KB
testcase_16 AC 124 ms
41,368 KB
testcase_17 AC 124 ms
41,188 KB
testcase_18 AC 125 ms
40,940 KB
testcase_19 AC 128 ms
41,128 KB
testcase_20 AC 116 ms
39,964 KB
testcase_21 AC 125 ms
41,156 KB
testcase_22 AC 125 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N358 {

	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int[] a=new int[3];
		int[] buf=new int[3];
		int max=0;
		int cnt=0;
		for(int i=0;i<3;i++)
		{
			a[i]=sc.nextInt();
			max=(max<a[i])?a[i]:max;
		}
		if(issame(a)){System.out.println("0");}
		else if(iskado(a))
		{System.out.println("INF");}
		else
		{
			for(int p=1;p<=max;p++)
			{
				for(int i=0;i<3;i++)
				{
					buf[i]=a[i]%p;
				}
				if((!issame(buf))&&iskado(buf))
				{
					cnt++;
				}
			}
			System.out.println(cnt);
		}

	}
	static boolean issame(int[] a)
	{
		return a[0]==a[1]||a[1]==a[2]||a[2]==a[0];
	}
	static boolean iskado(int[] a)
	{
		if((a[1]>a[0]&&a[1]>a[2])||(a[1]<a[0]&&a[1]<a[2]))
		{
			return true;
		}
		return false;
	}

}
0