結果
| 問題 |
No.1543 [Cherry 2nd Tune A] これがプログラミングなのね
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-14 02:19:33 |
| 言語 | Lua (LuaJit 2.1.1734355927) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 419 bytes |
| コンパイル時間 | 626 ms |
| コンパイル使用メモリ | 6,816 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-18 07:40:17 |
| 合計ジャッジ時間 | 1,228 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 35 |
ソースコード
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)