結果
問題 | No.481 1から10 |
ユーザー |
![]() |
提出日時 | 2017-02-10 22:24:42 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 289 bytes |
コンパイル時間 | 629 ms |
コンパイル使用メモリ | 57,868 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-28 05:24:00 |
合計ジャッジ時間 | 1,491 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
#include<iostream> #include<vector> #include<string> using namespace std; #define FOR(k,m,n) for(int (k)=(m);(k)<(n);(k)++) #define rep(i,n) FOR((i),0,(n)) typedef long long ll; const int INF=1e9+7; int main(){ int n=0; rep(i,9){ int a; cin>>a; n+=a; } cout<<(55-n)<<endl; }