結果
問題 | No.609 Noelちゃんと星々 |
ユーザー | PCTprobability |
提出日時 | 2020-07-25 14:43:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,454 bytes |
コンパイル時間 | 1,807 ms |
コンパイル使用メモリ | 171,912 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 05:52:01 |
合計ジャッジ時間 | 5,307 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 20 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 28 ms
5,376 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 17 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 36 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | RE | - |
testcase_16 | AC | 52 ms
5,376 KB |
testcase_17 | AC | 40 ms
5,376 KB |
testcase_18 | AC | 14 ms
5,376 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:74:25: warning: 'k' may be used uninitialized [-Wmaybe-uninitialized] 74 | ll k=(n.at(k/2)+n.at((k/2)-1)); | ~^~ main.cpp:74:16: note: 'k' was declared here 74 | ll k=(n.at(k/2)+n.at((k/2)-1)); | ^
ソースコード
#include <iostream> #include <random> #include <bits/stdc++.h> using namespace std; using ull = __int128; using ll = long long; std::ostream &operator<<(std::ostream &dest, __int128_t value) { std::ostream::sentry s(dest); if (s) { __uint128_t tmp = value < 0 ? -value : value; char buffer[128]; char *d = std::end(buffer); do { --d; *d = "0123456789"[tmp % 10]; tmp /= 10; } while (tmp != 0); if (value < 0) { --d; *d = '-'; } int len = std::end(buffer) - d; if (dest.rdbuf()->sputn(d, len) != len) { dest.setstate(std::ios_base::badbit); } } return dest; } __int128 p(string &s) { __int128 ret = 0; for (int i = 0; i < s.length(); i++) if ('0' <= s[i] && s[i] <= '9') ret = 10 * ret + s[i] - '0'; return ret; } ll gcd(ll a,ll b) { if (a%b == 0) { return(b); } else { return(gcd(b, a%b)); } } ll z(ll a,ll b){ if(a<b){ swap(a,b); return z(a,b); } else{ return a-b; } } int main(){ ll a; cin>>a; vector<ll> n(a); for(int i=0;i<a;i++){ cin>>n.at(i); } sort(n.begin(), n.end()); if(a%2==1){ ll k=n.at((a-1)/2); ll ans=0; for(int i=0;i<a;i++){ ans=ans+z(k,n.at(i)); } cout<<ans<<endl; } else{ ll k=(n.at(k/2)+n.at((k/2)-1)); ll ans=0; for(int i=0;i<a;i++){ ans=ans+z(k,n.at(i)); } cout<<ans<<endl; } }