結果
問題 |
No.2054 Different Sequence
|
ユーザー |
|
提出日時 | 2022-08-23 06:50:00 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 155 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 53,760 KB |
最終ジャッジ日時 | 2024-10-10 13:41:23 |
合計ジャッジ時間 | 2,272 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
import sys input = sys.stdin.readline from collections import * N, M = map(int, input().split()) if N*(N+1)//2<=M: print('Yes') else: print('No')