結果

問題 No.542 1円玉と5円玉
ユーザー kasumikokasumiko
提出日時 2017-07-30 15:54:44
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 634 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-10 22:33:08
合計ジャッジ時間 1,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
5,248 KB
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <limits.h>
#include <stdbool.h>

typedef double db;
typedef int in;
typedef long int li;
typedef long long int lli;
typedef long  ld;
typedef long long  lld;

#define pi M_PI
#define in scanf
#define out printf
#define inf INT_MAX
#define rep(i,n) for(int i=0;i<n;++i)
#define debugd(d) printf("%d\n",d)
#define debugs(s) printf("%s\n",s)
#define debugc(c) printf("%c\n",c)


int main()
{
  int a,b;
  in("%d %d\n",&a,&b);
  int sum=0;
  rep(i,b+1)
  {
    rep(j,a+1)
    {
      if(i==0&&j==0){;}
      else{debugd(j+i*5);}
    }
  }
  return 0;
}
0