結果

問題 No.1224 I hate Sqrt Inequality
ユーザー osrgy01osrgy01
提出日時 2021-04-23 10:38:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 87 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 10,664 KB
実行使用メモリ 8,364 KB
最終ジャッジ日時 2023-09-17 10:52:56
合計ジャッジ時間 1,222 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
8,172 KB
testcase_01 AC 23 ms
8,252 KB
testcase_02 AC 25 ms
8,208 KB
testcase_03 AC 25 ms
8,180 KB
testcase_04 AC 24 ms
8,188 KB
testcase_05 WA -
testcase_06 AC 24 ms
8,168 KB
testcase_07 WA -
testcase_08 AC 23 ms
8,304 KB
testcase_09 AC 23 ms
8,176 KB
testcase_10 AC 24 ms
8,112 KB
testcase_11 AC 23 ms
8,292 KB
testcase_12 AC 23 ms
8,168 KB
testcase_13 AC 23 ms
8,240 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
if 10**100000%b==0:
    print('No')
else:
    print('Yes')
0