結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | 0w1 |
提出日時 | 2016-11-21 01:08:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 823 bytes |
コンパイル時間 | 1,502 ms |
コンパイル使用メモリ | 172,680 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 12:10:24 |
合計ジャッジ時間 | 4,725 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; signed main(){ int N; cin >> N; vector< __int128 > A( N ); for( int i = 0; i < N; ++i ){ string S; cin >> S; for( int i = 0; i < S.size(); ++i ){ if( S[ i ] == '.' ) S = S.substr( i + 1 ); A[ i ] = A[ i ] * 10 + S[ i ] - '0'; } for( int i = 0; i < S.size(); ++i ) A[ i ] = A[ i ] * 10 + S[ i ] - '0'; for( int i = 0; i < 10 - S.size(); ++i ) A[ i ] = A[ i ] * 10; } __int128 sum = 0; for( int i = 0; i < N; ++i ) sum += A[ i ]; string ans; while( sum ) ans += ( char ) ( sum % 10 ), sum /= 10; reverse( ans.begin(), ans.end() ); if( ans.size() <= 10 ) ans = "0." + ans; else ans = ans.substr( 0, ans.size() - 10 ) + "." + ans.substr( ans.size() - 10 ); cout << ans << endl; return 0; }