結果
問題 | No.799 赤黒かーどげぇむ |
ユーザー | himagineer |
提出日時 | 2019-07-24 23:38:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,049 bytes |
コンパイル時間 | 736 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 14:15:09 |
合計ジャッジ時間 | 1,565 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,948 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cmath> #include<cstdlib> #include<climits> #include<string> #include<algorithm> #include<vector> #include<queue> #include<stack> #include<numeric> #include<map> #include<set> #include<bitset> using namespace std; #define REP(i,m,n) for(int i = m; i < n; i++) #define rep(i,n) REP(i,0,n) #define ALL(a) (a).begin(),(a).end() #define RALL(a) (a).rbegin(),(a).rend() #define dup(x,y) (((x)+(y)-1) / (y)); //整数型のまま切り上げ演算する #define PI 3.14159265359 #define MOD 1000000007 typedef long long LL; template<class T> inline void chmax(T& a, T b) { if (a < b) { a = b; } } template<class T> inline void chmin(T& a, T b) { if (a > b) { a = b; } } template<class T> void print_vector(vector<T> vec) { for (int i = 0; i < vec.size(); i++) { cout << vec[i] << " "; } } int main(void) { LL A, B, C, D; cin >> A >> B >> C >> D; LL count = 0; for (LL i = A; i <= B; i++) { for (LL j = C; j <= D; j++) { if (i!=j) { count++; } } } cout << count << endl; return 0; }