結果

問題 No.9000 Hello World! (テスト用)
ユーザー elzupelzup
提出日時 2017-08-25 22:19:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 1,234 ms
コンパイル使用メモリ 158,684 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-23 15:23:55
合計ジャッジ時間 1,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a, 0, sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
#define SIZE(array) (sizeof(array) / sizeof(array[0]))

long mod = 1000000007L;

auto cmp = [](pair<int, pair<int, long>> const & a, pair<int, pair<int, long>> const & b) {
	return a.second.second < b.second.second;
};


signed main() {
	int a, b;
	cin >> a >> b;
	cout << abs(a - b) << endl;
}
0