結果
| 問題 |
No.2547 Did you enjoy Chofu Festival?
|
| コンテスト | |
| ユーザー |
nakanoj
|
| 提出日時 | 2023-11-25 13:11:45 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 318 bytes |
| コンパイル時間 | 360 ms |
| コンパイル使用メモリ | 81,844 KB |
| 実行使用メモリ | 53,468 KB |
| 最終ジャッジ日時 | 2024-09-26 10:23:05 |
| 合計ジャッジ時間 | 1,609 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 |
ソースコード
# from collections import def readints(): return list(map(int, input().split())) def main(): N, = readints() A = readints() B = readints() print(sum(a <= b for a, b in zip(A, B))) if __name__ == '__main__': # import sys # sys.setrecursionlimit(550000) # flush = lambda: sys.stdout.flush() main()
nakanoj