結果
| 問題 | No.2547 Did you enjoy Chofu Festival? |
| コンテスト | |
| ユーザー |
wagasa2
|
| 提出日時 | 2023-11-27 22:31:00 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 163 bytes |
| 記録 | |
| コンパイル時間 | 531 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 20,600 KB |
| 最終ジャッジ日時 | 2026-04-13 14:56:45 |
| 合計ジャッジ時間 | 4,352 ms |
|
ジャッジサーバーID (参考情報) |
judge3_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