結果

問題 No.2239 Friday
ユーザー elphe
提出日時 2024-07-04 16:07:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 204 bytes
コンパイル時間 702 ms
コンパイル使用メモリ 66,416 KB
最終ジャッジ日時 2025-02-22 01:56:24
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main()
{
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int A, B;
    cin >> A >> B;

    cout << max(A, B) - min(A, B) << '\n';
    return 0;
}
0