結果

問題 No.1381 Simple Geometry 1
ユーザー KudeKude
提出日時 2021-02-11 15:40:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 61 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-07-18 04:21:27
合計ジャッジ時間 2,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,112 KB
testcase_01 AC 32 ms
52,912 KB
testcase_02 AC 31 ms
52,792 KB
testcase_03 AC 32 ms
52,872 KB
testcase_04 AC 31 ms
53,296 KB
testcase_05 AC 33 ms
52,592 KB
testcase_06 AC 33 ms
52,628 KB
testcase_07 AC 33 ms
52,284 KB
testcase_08 AC 34 ms
53,132 KB
testcase_09 AC 33 ms
52,756 KB
testcase_10 AC 32 ms
52,452 KB
testcase_11 AC 32 ms
51,892 KB
testcase_12 AC 33 ms
52,312 KB
testcase_13 AC 35 ms
53,292 KB
testcase_14 AC 33 ms
52,420 KB
testcase_15 AC 33 ms
51,820 KB
testcase_16 AC 32 ms
53,556 KB
testcase_17 AC 36 ms
52,532 KB
testcase_18 AC 36 ms
52,396 KB
testcase_19 AC 33 ms
52,404 KB
testcase_20 AC 32 ms
52,120 KB
testcase_21 AC 34 ms
53,352 KB
testcase_22 AC 33 ms
53,084 KB
testcase_23 AC 34 ms
52,836 KB
testcase_24 AC 33 ms
52,548 KB
testcase_25 AC 34 ms
52,724 KB
testcase_26 AC 34 ms
52,188 KB
testcase_27 AC 33 ms
52,596 KB
testcase_28 AC 34 ms
52,796 KB
testcase_29 AC 34 ms
53,420 KB
testcase_30 AC 34 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x, y, z, w = map(int, input().split())
print((x - y * z) / 2)
0