結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー kou_kkkkou_kkk
提出日時 2023-08-27 00:26:27
言語 Nim
(2.2.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 5,935 ms
コンパイル使用メモリ 65,152 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 04:38:00
合計ジャッジ時間 6,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils
let xs = stdin.readLine.split.map parseInt
echo if xs.min == xs[0]: "Yes" else: "No"
0