結果
| 問題 | No.9002 FizzBuzz(テスト用) |
| ユーザー |
Do3419
|
| 提出日時 | 2023-03-21 22:00:53 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 94 ms / 5,000 ms |
| + 349µs | |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 292 ms |
| コンパイル使用メモリ | 21,284 KB |
| 実行使用メモリ | 15,736 KB |
| 最終ジャッジ日時 | 2026-08-30 06:47:26 |
| 合計ジャッジ時間 | 1,485 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
n = int(input())
for i in range(n):
j = i+1
txt = ""
if j%3 ==0:
txt += "Fizz"
if j%5 ==0:
txt += "Buzz"
if txt == "":
txt = str(j)
print(txt)
Do3419