結果

問題 No.8043 yukicoderへようこそ!
ユーザー tm8619
提出日時 2019-04-01 23:29:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 493 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-27 04:43:32
合計ジャッジ時間 662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

a = input()
print("Hello World!")


N = int(input())
print(N*(N-1)//2)


A, B = map(int, input().split())
S = input()
print(A+B, S)


N = int(input())
for i in range(1, N+1):
    if i % 3 == 0 and i % 5 == 0:
        print("FizzBuzz")
    elif i % 3 == 0:
        print("Fizz")
    elif i % 5 == 0:
        print("Fizz")
    else:
        print(i)
N = int(input())
A = list(map(int, input().split()))
print(sum(A))
N = int(input())
ans = 0
for i in range(N):
    ans += int(input())
print(ans)
0