結果

問題 No.836 じょうよ
ユーザー funakoshifunakoshi
提出日時 2019-09-05 11:19:52
言語 C
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 464 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2025-01-03 02:37:19
合計ジャッジ時間 36,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 2 ms
7,424 KB
testcase_03 AC 1 ms
7,424 KB
testcase_04 AC 1 ms
7,424 KB
testcase_05 AC 1 ms
7,552 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 RE -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 RE -
testcase_39 WA -
testcase_40 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |     scanf("%lld %lld %lld",&left,&right,&num);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
    long long int left,right,num;
    long long int ans[100001]={0};
    scanf("%lld %lld %lld",&left,&right,&num);
    for(long long int i=left;i<=right;i++)
    {
        int mod = i%num;
        ans[mod]++;
    }
    for(long long int i=0;i<2*num-1;i++)
    {
        if(ans[i]>0)
        {
            printf("%lld\n",ans[i]);
        }
    }
}
0