結果

問題 No.1224 I hate Sqrt Inequality
ユーザー kfieldkfield
提出日時 2020-10-25 11:11:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 101 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 71,628 KB
最終ジャッジ日時 2023-09-28 22:32:34
合計ジャッジ時間 2,791 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 72 ms
71,292 KB
testcase_02 AC 72 ms
71,144 KB
testcase_03 AC 72 ms
71,320 KB
testcase_04 AC 74 ms
71,424 KB
testcase_05 AC 73 ms
71,152 KB
testcase_06 WA -
testcase_07 AC 74 ms
71,584 KB
testcase_08 WA -
testcase_09 AC 73 ms
71,400 KB
testcase_10 AC 76 ms
71,364 KB
testcase_11 AC 73 ms
71,212 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 73 ms
71,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())

c = str(a/b)

if len(c) >20:
    print("Yes")
else:
    print("No")
0