結果
問題 | No.294 SuperFizzBuzz |
ユーザー | akakimidori |
提出日時 | 2017-05-06 15:43:25 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 136 ms / 5,000 ms |
コード長 | 645 bytes |
コンパイル時間 | 714 ms |
コンパイル使用メモリ | 21,504 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 13:55:14 |
合計ジャッジ時間 | 2,127 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 136 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 8 ms
5,376 KB |
testcase_09 | AC | 77 ms
5,376 KB |
testcase_10 | AC | 77 ms
5,376 KB |
testcase_11 | AC | 125 ms
5,376 KB |
testcase_12 | AC | 131 ms
5,376 KB |
testcase_13 | AC | 134 ms
5,376 KB |
testcase_14 | AC | 136 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘run’: main.c:15:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d",&n); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> int popCount(int n){ int t=(n&0x55555555)+((n>>1)&0x55555555); t=(t&0x33333333)+((t>>2)&0x33333333); t=(t&0x0F0F0F0F)+((t>>4)&0x0F0F0F0F); t=(t&0x00FF00FF)+((t>>8)&0x00FF00FF); t=(t&0x0000FFFF)+((t>>16)&0x0000FFFF); return t; } void run(void){ int n; scanf("%d",&n); int i,j; for(i=3;i<=25;i++){ for(j=0;j<(1<<(i-1));j++){ n-=(popCount(j)%3==2); if(n==0){ int k=i-2; while(k>=0){ printf("%d",(j>>k)&0x01?5:3); k--; } printf("5\n"); return; } } } return; } int main(void){ run(); return 0; }