結果

問題 No.3043 yukicoderへようこそ!
ユーザー siro53siro53
提出日時 2019-04-01 23:25:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 598 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-05 09:10:33
合計ジャッジ時間 715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

print("Hello World!")
n = int(input())
ans = 0
for i in range(n):
    ans += (i+1)
print(ans)
a,b = map(int, input().split())
s = input()
print(str(a+b) + ' ' + s)
N = int(input())
for i in range(1, N+1):
    if i%3==0:
        if i%5==0:
            print("FizzBuzz")
        else:
            print("Fizz")
    elif i%5==0:
        print("Buzz")
    else:
        print(i)
nn = int(input())
aa = list(map(int, input().split()))
ans = 0
for i in range(n):
    ans += aa[i]
print(ans)
nnn = int(input())
aaa = [int(input()) for i in range(n)]
ans = 0
for i in range(n):
    ans += aaa[i]
print(ans)
0