結果
問題 | No.1089 三変数方程式 |
ユーザー | penta |
提出日時 | 2020-07-25 15:05:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,025 bytes |
コンパイル時間 | 1,990 ms |
コンパイル使用メモリ | 202,272 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 06:23:44 |
合計ジャッジ時間 | 2,725 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for (int i = 0; i < (n); ++i) #define rep2(i,m,n) for (int i = m; i < (n); ++i) #define all(x) (x).begin(),(x).end() template<class T> void chmin(T &a, const T &b) noexcept { if (b < a) a = b;} template<class T> void chmax(T &a, const T &b) noexcept { if (a < b) a = b;} template<class T> void drop(const T &x) { std::cout<<x<<endl; exit(0);} void debug_out() { std::cout << "\n";} template<class T, class... Args> void debug_out(const T &x, const Args &... args) { std::cout<<x<< " "; debug_out(args...);} #ifdef _DEBUG #define debug(...) debug_out(__VA_ARGS__) #else #define debug(...) #endif struct InitIO{ InitIO() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(15); } }init_io; int main() { int n; cin >> n; ll ans = 0; rep2(x, 0, 1001) rep2(y, 0, 1001) { int z = n - (x+y); if (z >= 0) ans++; } cout << ans << endl; return 0; }