結果
問題 |
No.481 1から10
|
ユーザー |
![]() |
提出日時 | 2020-06-11 23:41:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 501 bytes |
コンパイル時間 | 952 ms |
コンパイル使用メモリ | 91,280 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 03:33:16 |
合計ジャッジ時間 | 1,308 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
#include<iostream> #include<math.h> #include<string.h> #include<vector> #include<algorithm> #include<iomanip> #include<deque> #include<map> #include<stdio.h> using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); string s; getline(cin,s); int sum=0,temp=0; for(int i=0;i<s.size();i++){ if(s[i]==' '){ temp/=10; sum+=temp; temp=0; }else{ temp+=int(s[i]-'0'); temp*=10; } } temp/=10; sum+=temp; int ans=55-sum; cout <<ans << endl; return 0; }