結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
mono1977
|
| 提出日時 | 2017-02-10 22:24:54 |
| 言語 | C90(gcc15) (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 270 bytes |
| 記録 | |
| コンパイル時間 | 149 ms |
| コンパイル使用メモリ | 37,312 KB |
| 最終ジャッジ日時 | 2026-02-24 00:18:02 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <limits.h>
#include <stdbool.h>
int main(){
int sum=0,i,temp;
for(i=0;i<9;i++){
scanf("%d",&temp);
sum+=temp;
}
printf("%d\n",55-sum);
return 0;
}
mono1977