結果

問題 No.8130 プラチナバッハ問題
コンテスト
ユーザー titia
提出日時 2026-04-08 04:49:06
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 171 ms / 6,000 ms
コード長 204 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 414 ms
コンパイル使用メモリ 20,700 KB
実行使用メモリ 25,060 KB
最終ジャッジ日時 2026-04-08 04:49:16
合計ジャッジ時間 5,154 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
サブタスク 配点 結果
small 10 % AC * 12
large 90 % AC * 18
合計 2.5 * 100% = 250 点
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
input = sys.stdin.readline

A=[1,4,6]

T=int(input())
X=list(map(int,input().split()))

for tests in range(T):
    n=X[tests]

    if n in A:
        print("No")
    else:
        print("Yes")
0