結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー ___asymptote______asymptote___
提出日時 2015-05-14 23:11:05
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 53,496 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 03:46:21
合計ジャッジ時間 714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    4 | main(){
      | ^~~~

ソースコード

diff #

#include <iostream>
	using namespace std ;

main(){

	int n,m ;

	cin
		>> n ;

	for(m = 1; m <= n; m++){
		if(m % 3 == 0 && m % 5 == 0){
			cout
				<< "FizzBuzz\n" ;
		}else if(m % 3 == 0){
			cout
				<< "Fizz\n" ;
		}else if(m % 5 == 0){
			cout
				<< "Buzz\n" ;
		}else{
			cout
				<< m ;
		}
	}

	return 0 ;
}
0