๋ฌธ์
https://www.acmicpc.net/problem/5565
์ค๋ช
์ฑ 9 ๊ถ์ ๊ฐ๊ฒฉ์ด ๊ฐ๊ฐ ์ฃผ์ด์ง๊ณ ์ฑ 10 ๊ถ์ ์ด ๊ฐ๊ฒฉ์ด ์ฃผ์ด์ง๋ฏ๋ก ์ด๊ฐ๊ฒฉ์ tot๋ณ์์ ์ ์ฅํ๊ณ ๋๋จธ์ง ์ฑ ๋ค์ ๊ฐ๊ฒฉ์ mod๋ณ์์ for๋ฌธ์ ์ด์ฉํด 9 ๋ฒ ๋ฐ๋ณต์์ผ ๋ํ๋๋ก ํ๊ณ ๊ฒฐ๊ณผ๋ก tot-mod ๋ฅผ ์ถ๋ ฅํ๋๋ก ํ์๋ค.
์ฝ๋
#include <stdio.h>
int main() {
int tot,mod=0;
scanf("%d",&tot);
for (int i=0; i<9; i++)
{
int temp;
scanf("%d",&temp);
mod += temp;
}
printf("%d",tot-mod);
return 0;
}