結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-07-16 20:45:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 10,432 KB
実行使用メモリ 8,764 KB
最終ジャッジ日時 2023-09-11 06:41:38
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
8,604 KB
testcase_01 AC 20 ms
8,632 KB
testcase_02 AC 21 ms
8,668 KB
testcase_03 AC 20 ms
8,740 KB
testcase_04 AC 21 ms
8,664 KB
testcase_05 AC 20 ms
8,692 KB
testcase_06 AC 21 ms
8,572 KB
testcase_07 AC 20 ms
8,564 KB
testcase_08 AC 20 ms
8,568 KB
testcase_09 AC 21 ms
8,732 KB
testcase_10 AC 21 ms
8,628 KB
testcase_11 AC 20 ms
8,764 KB
testcase_12 AC 21 ms
8,660 KB
testcase_13 AC 20 ms
8,664 KB
testcase_14 AC 21 ms
8,724 KB
testcase_15 AC 20 ms
8,600 KB
testcase_16 AC 21 ms
8,656 KB
testcase_17 AC 21 ms
8,500 KB
testcase_18 AC 21 ms
8,668 KB
testcase_19 AC 20 ms
8,608 KB
testcase_20 AC 20 ms
8,572 KB
testcase_21 AC 20 ms
8,584 KB
testcase_22 AC 20 ms
8,600 KB
testcase_23 AC 21 ms
8,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from functools import *
from itertools import *
from heapq import *
import sys
input = sys.stdin.readline

X = list(map(int,input().split()))
if X[0]==min(X):
    print('Yes')
else:
    print('No')
0