結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | elzup |
提出日時 | 2017-08-25 22:19:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 490 bytes |
コンパイル時間 | 1,267 ms |
コンパイル使用メモリ | 158,256 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-15 15:45:33 |
合計ジャッジ時間 | 1,718 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#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; }