結果
問題 | No.799 赤黒かーどげぇむ |
ユーザー | startcpp |
提出日時 | 2019-03-17 22:24:15 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 253 bytes |
コンパイル時間 | 665 ms |
コンパイル使用メモリ | 53,596 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-08 00:12:02 |
合計ジャッジ時間 | 1,141 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include <iostream> using namespace std; int a, b, c, d; int main() { 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; return 0; }