結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | siro53 |
提出日時 | 2019-04-01 23:25:58 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 601 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-27 04:38:36 |
合計ジャッジ時間 | 662 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
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(nn): ans += aa[i] print(ans) nnn = int(input()) aaa = [int(input()) for i in range(n)] ans = 0 for i in range(nnn): ans += aaa[i] print(ans)