結果
問題 | No.294 SuperFizzBuzz |
ユーザー | MoritaYasuaki |
提出日時 | 2016-05-09 03:55:01 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 333 ms / 5,000 ms |
コード長 | 1,082 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 21,888 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 13:03:19 |
合計ジャッジ時間 | 2,505 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 333 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 0 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 13 ms
5,248 KB |
testcase_09 | AC | 208 ms
5,248 KB |
testcase_10 | AC | 0 ms
5,248 KB |
testcase_11 | AC | 273 ms
5,248 KB |
testcase_12 | AC | 295 ms
5,248 KB |
testcase_13 | AC | 310 ms
5,248 KB |
testcase_14 | AC | 329 ms
5,248 KB |
コンパイルメッセージ
main.c:38:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 38 | main() { | ^~~~ main.c: In function ‘main’: main.c:39:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | scanf("%td\n", &N); | ^~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> #include <stddef.h> #define int ptrdiff_t #define div lldiv #define div_t lldiv_t #define abs(a) ((a)<0?-(a):(a)) #define min(a,b) ((a)<(b)?(a):(b)) int N; int conb(int n, int r) { int p = 1; int q = 0; while (r--) p=p*n--/++q; return p; } int check(int a, int rank) { int t = 0; if (a%2 == 0) return 0; while (rank--) if (a & (1ULL << rank)) t++; return t%3 == 0; } void print(int a, int rank) { while (rank--) if (a & (1ULL << rank)) putchar('5'); else putchar('3'); printf("\n"); } main() { scanf("%td\n", &N); int rank = 3; for (rank = 3; ; rank++) { int t = 0; for (int nfive = 3; nfive <= rank; nfive+=3) t += conb(rank-1, nfive-1); if (t < N) { N-=t; } else { break; } } int a=0; do { if (check(a, rank)) if (--N == 0) break; a++; } while(1); print(a, rank); return 0; }