結果

問題 No.2811 Calculation Within Sequence
ユーザー highlighterhighlighter
提出日時 2024-07-07 17:19:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 19,563 ms
コンパイル使用メモリ 171,448 KB
実行使用メモリ 208,184 KB
最終ジャッジ日時 2024-07-08 12:14:31
合計ジャッジ時間 15,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
69,212 KB
testcase_01 AC 119 ms
69,108 KB
testcase_02 AC 122 ms
69,364 KB
testcase_03 AC 126 ms
69,272 KB
testcase_04 AC 120 ms
68,964 KB
testcase_05 AC 119 ms
69,392 KB
testcase_06 AC 120 ms
69,136 KB
testcase_07 AC 123 ms
69,136 KB
testcase_08 AC 120 ms
69,204 KB
testcase_09 AC 119 ms
69,520 KB
testcase_10 AC 121 ms
69,380 KB
testcase_11 AC 121 ms
69,100 KB
testcase_12 AC 122 ms
69,100 KB
testcase_13 AC 125 ms
69,360 KB
testcase_14 AC 113 ms
69,136 KB
testcase_15 AC 120 ms
69,080 KB
testcase_16 AC 124 ms
69,212 KB
testcase_17 AC 126 ms
69,224 KB
testcase_18 AC 120 ms
69,136 KB
testcase_19 AC 117 ms
69,136 KB
testcase_20 AC 118 ms
81,664 KB
testcase_21 AC 91 ms
56,908 KB
testcase_22 AC 67 ms
40,960 KB
testcase_23 AC 71 ms
41,216 KB
testcase_24 AC 96 ms
56,804 KB
testcase_25 AC 58 ms
35,456 KB
testcase_26 AC 81 ms
48,512 KB
testcase_27 AC 92 ms
54,112 KB
testcase_28 AC 86 ms
54,044 KB
testcase_29 AC 59 ms
37,120 KB
testcase_30 AC 84 ms
53,200 KB
testcase_31 AC 88 ms
57,380 KB
testcase_32 AC 72 ms
43,776 KB
testcase_33 AC 82 ms
49,920 KB
testcase_34 AC 76 ms
44,544 KB
testcase_35 AC 80 ms
51,664 KB
testcase_36 AC 76 ms
48,832 KB
testcase_37 AC 87 ms
55,116 KB
testcase_38 AC 91 ms
55,928 KB
testcase_39 AC 74 ms
43,732 KB
testcase_40 AC 80 ms
208,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (82 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

class ABC{
	static void Main(){
		int[] input=System.Console.ReadLine().Split().Select(int.Parse).ToArray();
		int a=input[0];
		int b=input[1];
		int[] T=Console.ReadLine().Split().Select(int.Parse).ToArray();
		int[] S=Console.ReadLine().Split().Select(int.Parse).ToArray();
		int t=0;
		for(int i=0;i<a;i++){
			t=Gcd(t,T[i]);
		}
		int s=0;
		for(int i=0;i<b;i++){
			s=Gcd(s,S[i]);
		}
		if(s%t==0){
			System.Console.WriteLine("Yes");
		}
		else{
			System.Console.WriteLine("No");
		}
	}
	static int Gcd(int m,int n){
		if (n == 0) return m;
		return Gcd(n, m % n);
	}
}
0