Skip to content

Instantly share code, notes, and snippets.

@xkumiyu
Created March 20, 2020 17:27
Show Gist options
  • Save xkumiyu/294b760510e4cee927b779aac8814da1 to your computer and use it in GitHub Desktop.
Save xkumiyu/294b760510e4cee927b779aac8814da1 to your computer and use it in GitHub Desktop.
# input()
N = int(input())
A = [int(input()) for _ in range(N)]
# sys.stdin.readline()
import sys
input = sys.stdin.readline
N = int(input())
A = [int(input()) for _ in range(N)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment