結果
| 問題 | No.316 もっと刺激的なFizzBuzzをください |
| コンテスト | |
| ユーザー |
NaruY
|
| 提出日時 | 2018-05-15 21:18:41 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 1,045 bytes |
| コンパイル時間 | 1,473 ms |
| コンパイル使用メモリ | 158,832 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-28 12:11:06 |
| 合計ジャッジ時間 | 2,357 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 33 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:26: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=]
12 | #define PRINTD(n) printf("%d\n",n)
| ^~~~~~
main.cpp:37:9: note: in expansion of macro ‘PRINTD’
37 | PRINTD(N/a + N/b + N/c - N/llcm(a,b) - N/llcm(b,c) - N/llcm(c,a) + N/llcm(a,llcm(b,c)));
| ^~~~~~
main.cpp:12:28: note: format string is defined here
12 | #define PRINTD(n) printf("%d\n",n)
| ~^
| |
| int
| %lld
main.cpp:5:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | #define SCD(n) scanf("%d",&n)
| ~~~~~^~~~~~~~~
main.cpp:35:16: note: in expansion of macro ‘SCD’
35 | int N; SCD(N);
| ^~~
main.cpp:7:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
7 | #define SCD3(m,n,k) scanf("%d%d%d",&m,&n,&k)
| ~~~~~^~~~~~~~~~~~~~~~~~~
main.cpp:36:20: note: in expansion of macro ‘SCD3’
36 | int a,b,c; SCD3(a,b,c);
| ^~~~
ソースコード
#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) for(int i=0;i<(n);++i)
#define FORq(i, m, n) for(int i = (m);i <= (n);++i)
#define SCD(n) scanf("%d",&n)
#define SCD2(m,n) scanf("%d%d",&m,&n)
#define SCD3(m,n,k) scanf("%d%d%d",&m,&n,&k)
#define PB push_back
#define MP make_pair
#define ARSCD(A,N) REP(i,N){SCD(A[i]);}
#define ARSCD1(A,N) FORq(i,1,N){SCD(A[i]);}
#define PRINTD(n) printf("%d\n",n)
#define PRINTLLD(n) printf("%lld\n",n)
#define DEBUG printf("%s\n","debug")
#define fst first
#define snd second
#define IN(x,S) (S.count(x) != 0)
using namespace std;
typedef pair<int,int> PII;
typedef vector<int> VI;
typedef long long ll;
//////////////////////////////////////////////////////
ll llgcd(ll x,ll y){
if (x<y) return llgcd(y,x);
if (y==0) return x;
ll r = x % y;
return llgcd(y,r);
}
ll llcm(ll x,ll y){
return (x*y)/llgcd(x,y);
}
int main(){
int N; SCD(N);
int a,b,c; SCD3(a,b,c);
PRINTD(N/a + N/b + N/c - N/llcm(a,b) - N/llcm(b,c) - N/llcm(c,a) + N/llcm(a,llcm(b,c)));
return 0;
}
NaruY