結果

問題 No.3043 yukicoderへようこそ!
ユーザー uwiuwi
提出日時 2019-04-02 17:49:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-07 18:54:56
合計ジャッジ時間 954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys

lines = []
for line in sys.stdin:
    lines.append(line)
    
if len(lines) == 1:
    if lines[0].isnumeric():
        for i in range(1, int(lines[0])+1):
            if i % 15 == 0:
                print("FizzBuzz")
            elif i % 3 == 0:
                print("Fizz")
            elif i % 5 == 0:
                print("Buzz")
            else:
                print(i)
    else:
        print("Hello World!")
elif len(lines) == 2:
    if len(lines[0].split()) == 2:
        print(f"{sum(list(map(int, lines[0].split())))} {lines[1]}")
    else:
        print(sum(list(map(int, lines[1].split()))))
else:
    print(sum(list(map(int, lines[1:]))))
0