結果

問題 No.410 出会い
ユーザー FF256grhy
提出日時 2016-08-12 22:26:43
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 22,784 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 10:56:23
合計ジャッジ時間 901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%d%d%d%d", &px, &py, &qx, &qy);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

#define abs(x) (x > 0 ? x : -(x))

int px, py, qx, qy;

int main() {
	scanf("%d%d%d%d", &px, &py, &qx, &qy);
	float ans = ( abs(px - qx) + abs(py - qy) ) / 2.0;
	
	printf("%.1f\n", ans);
	
	return 0;
}
0