結果

問題 No.138 化石のバージョン
ユーザー toshiro_yanagi
提出日時 2018-06-03 10:28:34
言語 Nim
(2.2.0)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 3,245 ms
コンパイル使用メモリ 64,792 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 09:15:46
合計ジャッジ時間 4,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils
let old, test = stdin.readLine.replace(".", "").parseInt
["YES", "NO"][int(test > old)].echo
0