結果
| 問題 | No.9002 FizzBuzz(テスト用) |
| ユーザー |
john_doe_113
|
| 提出日時 | 2015-06-25 12:35:43 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 146 bytes |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-07 17:32:53 |
| 合計ジャッジ時間 | 646 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 3 |
ソースコード
for i in range(1,int(raw_input()) + 1):
if i % 3 == 0:
print 'Fizz'
if i % 5 == 0:
print 'Buff'
else:
print i
john_doe_113