結果

問題 No.3027 f-列とh-列
ユーザー qwewe
提出日時 2025-05-14 13:01:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 67,404 KB
最終ジャッジ日時 2025-05-14 13:03:18
合計ジャッジ時間 2,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 7 RE * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# Read the input integer N from standard input
# Using sys.stdin.readline for potentially faster input in competitive programming
n_str = sys.stdin.readline()
N = int(n_str)

# Define the hardcoded sequence a_1, ..., a_10
# This sequence is specific to this problem, likely derived from its context or source (e.g., yukicoder 3032).
# The sequence satisfies the sample cases: a_1 = 7, a_5 = 5.
# Sequence: 7, 1, 0, 6, 5, 1, 0, 6, 1, 0
# In Python, we use a 0-indexed list.
a = [7, 1, 0, 6, 5, 1, 0, 6, 1, 0]

# The problem asks for the N-th element of the sequence.
# Since the list 'a' is 0-indexed, the N-th element is at index N-1.
# The problem constraints state 1 <= N <= 10, so N-1 will be a valid index from 0 to 9.
result = a[N-1]

# Print the result to standard output, followed by a newline.
print(result)
0