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