結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー john_doe_113john_doe_113
提出日時 2015-06-25 12:35:43
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 6,596 KB
実行使用メモリ 6,148 KB
最終ジャッジ日時 2023-09-22 00:37:34
合計ジャッジ時間 711 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,876 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

for i in range(1,int(raw_input()) + 1):
    if i % 3 == 0:
        print 'Fizz'
    if i % 5 == 0:
        print 'Buff'
    else:
        print i
0