結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー _Kuni88_Kuni88
提出日時 2014-11-23 23:57:28
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 195 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-10 21:49:44
合計ジャッジ時間 629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#coding: utf-8

t = int(raw_input())

for i in range(1, at+1):
    s=''
    if i%3==0:
        s+='Fizz'
    if i%5==0:
        s+='Buzz'
    if s=='':
        s=i
    print s
    
0