結果
問題 | No.2187 三立法和 mod 333 |
ユーザー | US_cube |
提出日時 | 2023-01-13 22:03:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,771 bytes |
コンパイル時間 | 887 ms |
コンパイル使用メモリ | 99,720 KB |
実行使用メモリ | 9,216 KB |
最終ジャッジ日時 | 2024-06-06 22:45:18 |
合計ジャッジ時間 | 5,394 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
ソースコード
#include <iostream> #include <cmath> #include <string> #include <vector> #include <algorithm> #include <utility> #include <tuple> #include <cstdint> #include <cstdio> #include <map> #include <queue> #include <set> #include <stack> #include <deque> #include <unordered_map> #include <unordered_set> #include <bitset> #include <cctype> #include <climits> #include <functional> #include <cassert> #include <numeric> #define rep(i, n) for(int i = 0; i < (n); i++) #define per(i, n) for(int i = (n) - 1; i >= 0; i--) using ll = long long; #define vi vector<int> #define vvi vector<vi> #define vl vector<ll> #define pii pair<int, int> #define pll pair<ll, ll> #define all(a) (a).begin(), (a).end() #define rall(a) (a).rbegin(), (a).rend() constexpr int mod = 1000000007; using namespace std; template<class T, class U> bool chmax(T &a, const U &b){ return a < b ? (a = b, 1) : 0; } template<class T, class U> bool chmin(T &a, const U &b){ return a > b ? (a = b, 1) : 0; } int main(){ int a; cin >> a; vvi cnt(333, vi(4445)); for(ll j = 1; j <= 4444; j++){ const int v = (j*j*j) % 333; cnt[v][j]++; } rep(i, 333) rep(j, 4444) cnt[i][j+1] += cnt[i][j]; ll ans = 0; const ll mx = 4444LL*4444*4444*4444; for(ll i = 1; i <= 4444; i++){ const ll iv = i*i*i*i; const int iv3 = i*i*i % 333; for(ll j = i; iv+j*j*j*j <= mx; j++){ const ll jv = iv+j*j*j*j; const int jv3 = (iv3+j*j*j) % 333; const int v = (333 - jv3 + a) % 333; const int l = sqrt(sqrt(mx - jv)); if(l < j) continue; const ll num = cnt[v][l] - cnt[v][j]; if(i == j) ans += num * 3; else ans += num * 6; if(cnt[v][j] - cnt[v][j-1] == 1){ if(i == j) ans++; else ans += 3; } } } cout << ans << "\n"; }