結果

問題 No.538 N.G.S.
ユーザー gim
提出日時 2017-07-07 15:42:06
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 00:13:13
合計ジャッジ時間 2,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #

N=map(int, raw_input().split())
x, y, z = N

print (x*z-y*y+y*z-z*z)/(x-y)

0