結果
問題 | No.799 赤黒かーどげぇむ |
ユーザー | zubassyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanMAX |
提出日時 | 2024-03-20 11:09:45 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,175 bytes |
コンパイル時間 | 4,452 ms |
コンパイル使用メモリ | 308,392 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 06:02:20 |
合計ジャッジ時間 | 5,383 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,824 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; #define rep(i,n) for(int i=0;i<(int)n;i++) #define rep1(i,n) for(int i=1;i<=(int)n;i++) using ll = long long; using P = pair<int, int>; using Pl = pair<ll, ll>; using vi = vector<int>; using vvi = vector<vi>; using vd = vector<double>; using vs = vector<string>; using vb = vector<bool>; using vl = vector<long long>; using vvl = vector<vl>; #define inf 2147483646//int max #define linf 900000000000000000 const double PI = 3.1415926535897932384626433832795028841971; template<typename T>inline bool chmax(T& a, T b) { return ((a < b) ? (a = b, true) : (false)); } template<typename T>inline bool chmin(T& a, T b) { return ((a > b) ? (a = b, true) : (false)); } long long llceil(long long a, long long b) { if (a % b == 0) { return a / b; }return (a / b) + 1; } #define yes cout<<"Yes"<<endl; #define no cout<<"No"<<endl; 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)continue; ans++; } } cout << ans << endl; return 0; }