結果

問題 No.1224 I hate Sqrt Inequality
ユーザー m0ch1m0ch1m0ch1m0ch1
提出日時 2020-09-21 10:50:42
言語 Go
(1.22.1)
結果
MLE  
実行時間 -
コード長 276 bytes
コンパイル時間 10,361 ms
コンパイル使用メモリ 238,184 KB
実行使用メモリ 621,108 KB
最終ジャッジ日時 2024-06-24 11:27:25
合計ジャッジ時間 14,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,760 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

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

	check := make(map[int]int, 10)
	for {
		if a%b == 0 {
			fmt.Println("No")
			break
		} else {
			check[a%b]++
			if check[a%b] > 1 {
				fmt.Println("Yes")
				break
			}
			a = 10 * (a % b)
		}
	}
}
0