結果

問題 No.1027 U+1F4A0
ユーザー stngstng
提出日時 2022-08-17 17:26:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2024-04-15 06:35:10
合計ジャッジ時間 2,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,144 KB
testcase_01 AC 39 ms
52,756 KB
testcase_02 AC 40 ms
52,828 KB
testcase_03 AC 40 ms
53,136 KB
testcase_04 AC 39 ms
52,376 KB
testcase_05 AC 43 ms
52,652 KB
testcase_06 AC 39 ms
52,356 KB
testcase_07 AC 40 ms
51,824 KB
testcase_08 AC 41 ms
53,544 KB
testcase_09 AC 40 ms
52,408 KB
testcase_10 AC 40 ms
52,972 KB
testcase_11 AC 40 ms
52,540 KB
testcase_12 AC 40 ms
53,196 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 40 ms
53,012 KB
testcase_23 AC 41 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d1,d2 = map(int,input().split())

if d1 < d2**0.5:
    print(0)
elif d1 == d2**0.5:
    print(4)
elif d1 < d2:
    print(8)
elif d1 == d2:
    print(4)
else:
    print(0)
0