結果

問題 No.1027 U+1F4A0
ユーザー _matumo__matumo_
提出日時 2020-07-02 19:23:11
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 10,572 KB
実行使用メモリ 8,000 KB
最終ジャッジ日時 2023-10-13 05:09:52
合計ジャッジ時間 2,594 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 16 ms
7,916 KB
testcase_02 AC 15 ms
7,900 KB
testcase_03 AC 16 ms
7,912 KB
testcase_04 AC 16 ms
7,900 KB
testcase_05 AC 16 ms
7,896 KB
testcase_06 AC 19 ms
7,856 KB
testcase_07 AC 16 ms
7,964 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 16 ms
7,764 KB
testcase_14 AC 16 ms
7,896 KB
testcase_15 AC 16 ms
7,812 KB
testcase_16 AC 17 ms
7,812 KB
testcase_17 AC 15 ms
7,840 KB
testcase_18 AC 16 ms
7,808 KB
testcase_19 AC 16 ms
7,860 KB
testcase_20 AC 15 ms
7,908 KB
testcase_21 AC 15 ms
7,840 KB
testcase_22 WA -
testcase_23 AC 15 ms
7,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D1,D2=map(int,input().split())
if      D1*2<D2<D1:         n=8
elif    D1==D2 or D1*2==D2: n=4
else:                       n=0
print(n)
0