結果

問題 No.2558 中国剰余定理
ユーザー ゆうPゆうP
提出日時 2024-06-24 21:21:33
言語 Go
(1.22.1)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 13,636 ms
コンパイル使用メモリ 231,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 21:21:49
合計ジャッジ時間 15,287 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 25 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 97 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 21 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 15 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 26 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 30 ms
5,376 KB
testcase_19 AC 39 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 29 ms
5,376 KB
testcase_25 AC 30 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 19 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.2558 中国剰余定理
package main

import (
	"fmt"
	"math"
)

func main() {
	var A, B, a, b int
	fmt.Scan(&A, &B, &a, &b)

	for x := 0; x <= math.MaxInt32; x++ {
		if x%A == a && x%B == b {
			fmt.Println(x)
			break
		}
	}
}
0