結果
問題 |
No.481 1から10
|
ユーザー |
|
提出日時 | 2020-12-15 11:55:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 191 bytes |
コンパイル時間 | 1,418 ms |
コンパイル使用メモリ | 163,788 KB |
実行使用メモリ | 13,824 KB |
最終ジャッジ日時 | 2024-09-20 01:35:49 |
合計ジャッジ時間 | 7,783 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | TLE * 1 -- * 1 |
other | -- * 8 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int sum = 0; for (int i = 1; i <= 10;) { int b; cin >> b; sum += b; } cout << (55 - sum) << "\n"; return 0; }