結果

問題 No.2054 Different Sequence
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-22 20:51:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 57,280 KB
最終ジャッジ日時 2024-07-01 20:50:13
合計ジャッジ時間 2,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
56,196 KB
testcase_01 AC 48 ms
55,668 KB
testcase_02 AC 45 ms
56,376 KB
testcase_03 AC 45 ms
56,372 KB
testcase_04 AC 45 ms
55,424 KB
testcase_05 AC 45 ms
56,416 KB
testcase_06 AC 46 ms
56,872 KB
testcase_07 AC 46 ms
55,488 KB
testcase_08 AC 46 ms
56,492 KB
testcase_09 AC 48 ms
55,680 KB
testcase_10 AC 46 ms
56,924 KB
testcase_11 AC 45 ms
56,024 KB
testcase_12 AC 46 ms
55,116 KB
testcase_13 AC 46 ms
56,816 KB
testcase_14 AC 46 ms
56,220 KB
testcase_15 AC 47 ms
55,364 KB
testcase_16 AC 46 ms
55,300 KB
testcase_17 AC 46 ms
56,868 KB
testcase_18 AC 46 ms
57,148 KB
testcase_19 AC 45 ms
55,624 KB
testcase_20 AC 46 ms
57,280 KB
testcase_21 AC 46 ms
56,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N,M = map(int,input().split())
if N*(N+1)//2<=M:
    print('Yes')
else:
    print('No')
0