結果

問題 No.2811 Calculation Within Sequence
ユーザー ID 21712ID 21712
提出日時 2024-11-05 09:39:06
言語 Go
(1.22.1)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 14,274 ms
コンパイル使用メモリ 229,420 KB
実行使用メモリ 8,100 KB
最終ジャッジ日時 2024-11-05 09:39:29
合計ジャッジ時間 22,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 136 ms
7,972 KB
testcase_04 AC 113 ms
7,968 KB
testcase_05 AC 223 ms
8,096 KB
testcase_06 AC 218 ms
8,096 KB
testcase_07 AC 113 ms
7,972 KB
testcase_08 AC 222 ms
8,096 KB
testcase_09 AC 219 ms
8,100 KB
testcase_10 AC 243 ms
8,100 KB
testcase_11 AC 111 ms
7,968 KB
testcase_12 AC 113 ms
7,968 KB
testcase_13 AC 217 ms
8,096 KB
testcase_14 AC 111 ms
7,972 KB
testcase_15 AC 112 ms
7,968 KB
testcase_16 AC 113 ms
7,972 KB
testcase_17 AC 243 ms
8,100 KB
testcase_18 AC 110 ms
7,968 KB
testcase_19 AC 112 ms
7,972 KB
testcase_20 AC 112 ms
7,968 KB
testcase_21 AC 223 ms
8,100 KB
testcase_22 AC 222 ms
8,096 KB
testcase_23 AC 221 ms
8,096 KB
testcase_24 AC 141 ms
7,972 KB
testcase_25 AC 44 ms
6,820 KB
testcase_26 AC 24 ms
6,816 KB
testcase_27 AC 67 ms
7,840 KB
testcase_28 AC 20 ms
6,816 KB
testcase_29 AC 101 ms
7,968 KB
testcase_30 AC 26 ms
6,816 KB
testcase_31 AC 101 ms
7,968 KB
testcase_32 AC 29 ms
6,816 KB
testcase_33 AC 39 ms
6,820 KB
testcase_34 AC 126 ms
7,968 KB
testcase_35 AC 23 ms
6,816 KB
testcase_36 AC 57 ms
6,820 KB
testcase_37 AC 75 ms
7,844 KB
testcase_38 AC 13 ms
6,820 KB
testcase_39 AC 71 ms
7,968 KB
testcase_40 AC 112 ms
7,972 KB
testcase_41 AC 143 ms
7,968 KB
testcase_42 AC 62 ms
6,820 KB
testcase_43 AC 86 ms
7,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"
import . "math/big"

func main() {
	rd:=bf.NewReader(Stdin)
	var a,b int
	Fscan(rd,&a,&b)
	x,y:=new(Int),new(Int)
	Fscan(rd,x)
	for ;a>1;a-- {
		Fscan(rd,y)
		x.GCD(nil,nil,x,y)
	}
	e:=x.Int64()
	for ;b>0;b-- {
		var c int64
		Fscan(rd,&c)
		if c%e !=0 {
			Println("No")
			return
		}
	}
	Println("Yes")
}
0