結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | snrnsidy |
提出日時 | 2021-06-10 04:25:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,508 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 204,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 21:40:10 |
合計ジャッジ時間 | 3,573 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; 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; } int main(void) { cin.tie(0); ios::sync_with_stdio(false); __int128 sum = 0; int n; string s; cin >> n; for (int i = 0; i < n; i++) { cin >> s; string a,b; for(int j=0;j<s.length();j++) { if(s[j]=='.') { a = s.substr(0,j); b = s.substr(j+1); break; } } if(a=="") a = s; while(b.length()<10) { b += '0'; } a += b; __int128 temp = 0; __int128 num = 1; for(int j=a.length()-1;j>=0;j--) { if(a[j]=='-') continue; temp += ((a[j]-'0')*num); num*=10; } if(a[0]=='-') { temp*=-1; } sum += temp; } string res; __int128 temp = abs(sum); while(temp > 0) { res = (char)(temp%10 + '0') + res; temp/=10; if(res.length()==9) { res = '.' + res; } } if(sum < 0) { res = '-' + res; } cout << res << '\n'; return 0; }