結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー 👑 testestest
提出日時 2015-08-05 01:10:18
言語 C90
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 20,224 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 01:21:48
合計ジャッジ時間 485 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
int n,x=0;
while(n>=++x)x%3?x%5?printf("%d\n",x):printf("Buzz\n"):x%5?printf("Fizz\n"):printf("FizzBuzz\n");
return 0;
}
0