結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | roiti46 |
提出日時 | 2019-04-02 00:04:10 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 390 bytes |
コンパイル時間 | 312 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-05-05 10:18:07 |
合計ジャッジ時間 | 778 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
print "Hello World!" A, B = map(int, raw_input().split()) S = raw_input() print A + B, S N = int(raw_input()) for i in xrange(N): if i%15 == 0: print "FizzBuzz" elif i%5 == 0: print "Buzz" elif i%3 == 0: print "Fizz" N = int(raw_input()) print sum(map(int, raw_input().split())) N = int(raw_input()) print sum(map(int, [raw_input() for _ in xrange(N)]))