记录详情

Accepted

foo.c: In function 'main':
foo.c:5:18: warning: format '%ld' expects argument of type 'long int *', but argument 2 has type 'long long int *' [-Wformat=]
    5 |         scanf("%ld %ld",&x,&y);
      |                ~~^      ~~
      |                  |      |
      |                  |      long long int *
      |                  long int *
      |                %lld
foo.c:5:22: warning: format '%ld' expects argument of type 'long int *', but argument 3 has type 'long long int *' [-Wformat=]
    5 |         scanf("%ld %ld",&x,&y);
      |                    ~~^     ~~
      |                      |     |
      |                      |     long long int *
      |                      long int *
      |                    %lld
foo.c:6:19: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'long long int' [-Wformat=]
    6 |         printf("%ld\n",x+y);
      |                 ~~^    ~~~
      |                   |     |
      |                   |     long long int
      |                   long int
      |                 %lld
foo.c:7:19: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'long long int' [-Wformat=]
    7 |         printf("%ld\n",x*y);
      |                 ~~^    ~~~
      |                   |     |
      |                   |     long long int
      |                   long int
      |                 %lld
foo.c:8:19: warning: format '%ld' expects argument of type 'long int', but argument 2 has type 'long long int' [-Wformat=]
    8 |         printf("%ld\n",x%y);
      |                 ~~^    ~~~
      |                   |     |
      |                   |     long long int
      |                   long int
      |                 %lld
[Hydro](https://hydro.ac)提供评测服务
# 状态 耗时 内存占用
#1 Accepted 4ms 384.0 KiB
#2 Accepted 1ms 256.0 KiB
#3 Accepted 2ms 256.0 KiB
#4 Accepted 3ms 256.0 KiB
#5 Accepted 2ms 256.0 KiB

信息

递交者
类型
递交
题目
P1078 xf1-1两数和、积、余
语言
C
递交时间
2022-10-05 23:24:43
评测时间
2022-10-05 23:24:43
评测机
分数
100
总耗时
14ms
峰值内存
384.0 KiB