結果

問題 No.338 アンケート機能
ユーザー fjafjafjafjafjafja
提出日時 2017-09-17 12:47:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 6,328 ms
コンパイル使用メモリ 77,232 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-11-08 01:51:39
合計ジャッジ時間 9,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,328 KB
testcase_01 AC 121 ms
40,428 KB
testcase_02 AC 121 ms
40,880 KB
testcase_03 AC 125 ms
41,128 KB
testcase_04 AC 126 ms
41,128 KB
testcase_05 AC 128 ms
41,460 KB
testcase_06 AC 126 ms
41,272 KB
testcase_07 AC 129 ms
41,240 KB
testcase_08 AC 117 ms
40,448 KB
testcase_09 AC 127 ms
41,028 KB
testcase_10 AC 127 ms
41,176 KB
testcase_11 AC 129 ms
41,444 KB
testcase_12 AC 128 ms
41,144 KB
testcase_13 AC 126 ms
41,420 KB
testcase_14 AC 114 ms
40,048 KB
testcase_15 AC 132 ms
41,324 KB
testcase_16 AC 128 ms
41,132 KB
testcase_17 AC 127 ms
41,456 KB
testcase_18 AC 128 ms
40,984 KB
testcase_19 AC 120 ms
40,560 KB
testcase_20 AC 125 ms
41,284 KB
testcase_21 AC 132 ms
41,480 KB
testcase_22 AC 120 ms
40,064 KB
testcase_23 AC 119 ms
40,816 KB
testcase_24 AC 128 ms
41,172 KB
testcase_25 AC 119 ms
40,376 KB
testcase_26 AC 129 ms
41,528 KB
testcase_27 AC 130 ms
41,232 KB
testcase_28 AC 116 ms
40,332 KB
testcase_29 AC 128 ms
41,336 KB
testcase_30 AC 120 ms
40,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class N338
{
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int[] a=new int[2];a[0]=sc.nextInt();a[1]=sc.nextInt();
		double ans=2;
		int end=0;
		if((a[0]==100&&a[1]==0)||(a[0]==0&&a[1]==100)){ans=1;}
		else if(a[0]+a[1]==0){ans=0;}
		else if(a[0]==a[1]){}
		else
		{
			Arrays.sort(a);
			while(true)
			{
				for(int i=1;i<=ans/2;i++)
				{
					if(a[0]==Math.round(100.0*((double)i)/ans)&&a[1]==Math.round(100.0*(ans-((double)i))/ans))
					{
						end=1;
						break;
					}
				}
				if(end==1){break;}
				ans++;
			}
		}
		System.out.println(Math.round(ans));
	}

}
0