Submission #66257


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include<stdio.h>
long long main(){
long long A,B,n,m,k,l,p;
scanf("%lld",&A);
scanf("%lld",&B);
n=A+B;
printf("%lld\n",n);
m=A-B;
printf("%lld\n",m);
k=A*B;
printf("%lld\n",k);
l=A/B;
printf("%lld\n",l);
p=A%B;
printf("%lld\n",p);
return(0);
}

ステータス

項目 データ
問題 1124 - 和 差 積 商 余
ユーザー名 ei2132
投稿日時 2021-04-27 18:05:03
言語 C
状態 Accepted
得点 1
ソースコード長 318 Byte
最大実行時間 23 ms
最大メモリ使用量 636 KB

セット

セット 得点 Cases
1 ALL 1 / 1 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
002_in-1.txt AC 22 ms 344 KB
1
002_in-2.txt AC 15 ms 528 KB
1
002_in-3.txt AC 22 ms 580 KB
1
002_in-4.txt AC 23 ms 636 KB
1
002_in-5.txt AC 19 ms 468 KB
1