結果
| 問題 | No.2547 Did you enjoy Chofu Festival? |
| コンテスト | |
| ユーザー |
wagasa2
|
| 提出日時 | 2023-11-27 22:31:00 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 163 bytes |
| 記録 | |
| コンパイル時間 | 319 ms |
| コンパイル使用メモリ | 21,340 KB |
| 実行使用メモリ | 20,680 KB |
| 最終ジャッジ日時 | 2026-09-04 20:08:18 |
| 合計ジャッジ時間 | 4,745 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 10 |
ソースコード
N = int(input()) A = [int(a) for a in input().split()] B = [int(b) for b in input().split()] print(sum([b >= a for a, b in zip(input().split(), input().split())]))
wagasa2