結果

問題 No.799 赤黒かーどげぇむ
ユーザー sawfish
提出日時 2023-04-10 01:58:09
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 1,411 ms
コンパイル使用メモリ 130,744 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 07:24:46
合計ジャッジ時間 2,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;

int main() {
    int A, B, C, D;
    cin >> A >> B >> C >> D;

    int ans = 0;
    for (int i = A; i <= B; i++) {
        for (int j = C; j <= D; j++) {
            if (i != j) ans++;
        }
    }

    cout << ans << endl;
}
0