結果
問題 | No.742 にゃんにゃんにゃん 猫の挨拶 |
ユーザー | daleksprinter |
提出日時 | 2018-10-05 22:40:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,904 bytes |
コンパイル時間 | 1,696 ms |
コンパイル使用メモリ | 170,000 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 13:58:09 |
合計ジャッジ時間 | 7,256 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 5 ms
5,248 KB |
testcase_08 | AC | 15 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 1,666 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //macro----------------------------------------------------------------------------------------- #define rep(i,a,b) for(int i=a;i<b;i++) #define revrep(i,a,b) for(int i=a;i>b;i--) #define int long long //constant-------------------------------------------------------------------------------------- const int inf = 100100100100000; const int mod = 1000000007; int dx[4]={1,0,-1,0}; int dy[4]={0,1,0,-1}; const string alpha = "abcdefghijklmnopqrstuvwxyz"; //general_method-------------------------------------------------------------------------------- vector<int> cs(vector<int> arr){vector<int> ret = arr;rep(i,1,arr.size()){ret[i] += ret[i-1];}return ret;} int ceil(int a, int b){if(a%b == 0) return a/b;else return a/b + 1;} int digitlen(int i){int t = i;int count = 0;while(t){count += 1;t /= 10;}return count;} int gcd(int m, int n){if((0== m)||(0 == n))return 0;while(m != n){if(m > n)m = m - n;else n = n - m;}return m;} int lcm(int n, int m){return n*m/gcd(n,m);} //io_method------------------------------------------------------------------------------------- int input(){int tmp;cin >> tmp;return tmp;} string raw_input(){string tmp;cin >> tmp;return tmp;} string readline(){string s;getline(cin, s);return s;} template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i) o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} template <template <class tmp> class T, class U> ostream &operator<<(ostream &o, const T<U> &obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr)o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} void print(void) {cout << endl;} template <class Head> void print(Head&& head) {cout << head;print();} template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);} //main------------------------------------------------------------------------------------------ int arr[30005]; bool isgreeted(int a, int b){ if((arr[a] - a >= 0 && arr[b] - b >= 0) || (arr[a] - a <= 0 && arr[b] - b <= 0)) {//same direct if(( a > b && arr[a] < arr[b] )|| (a < b && arr[a] > arr[b])){ return true; } }else{ if((arr[a] < arr[b] && arr[a] < b )|| (arr[b] < a && b < a)){ return false; }else{ return true; } } return false; } signed main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); int n; scanf("%d",&n); rep(i,0,n){ scanf("%d", &arr[i]); } int ans = 0; rep(i,0,n){ rep(j, i + 1, n){ if(isgreeted(i,j)) ans++; } } print(ans); }