結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー john_doe_113
提出日時 2015-06-25 12:38:38
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-07-07 17:32:54
合計ジャッジ時間 451 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

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