結果

問題 No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
コンテスト
ユーザー mk
提出日時 2022-01-14 02:18:24
言語 Lua
(LuaJit 2.1.1774638290)
コンパイル:
luajit -b _filename_ a.out
実行:
luajit _filename_
結果
WA  
実行時間 -
コード長 419 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 95 ms
コンパイル使用メモリ 6,528 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-05-12 20:07:53
合計ジャッジ時間 1,324 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 35
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

local s = io.read("*n")
local t = io.read("*n")
local c = io.read():gsub(" ", "")

local ans = (function ()
  if c == "<" then
    if s < t then
      return "Yes"
    else
      return "No"
    end
  end
  if c == ">" then
    if s > t then
      return "Yes"
    else
      return "No"
    end
  end
  if c == "=" then
    if s == t then
      return "Yes"
    else
      return "No"
    end
  end
end)()

print(ans)
0