結果
| 問題 | No.481 1から10 |
| コンテスト | |
| ユーザー |
mono1977
|
| 提出日時 | 2017-02-10 22:24:54 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 0 ms / 2,000 ms |
| + 775µs | |
| コード長 | 270 bytes |
| 記録 | |
| コンパイル時間 | 52 ms |
| コンパイル使用メモリ | 36,096 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-24 20:57:15 |
| 合計ジャッジ時間 | 1,420 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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