結果
| 問題 |
No.2022 Antilogarithm
|
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2022-07-30 22:25:51 |
| 言語 | Lua (LuaJit 2.1.1734355927) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 255 bytes |
| コンパイル時間 | 188 ms |
| コンパイル使用メモリ | 6,940 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-20 19:04:48 |
| 合計ジャッジ時間 | 1,458 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 62 |
ソースコード
local ffi = require("ffi")
local C = ffi.C
ffi.cdef[[
long long atoll(const char*);
]]
local function lltonumber(str)
return C.atoll(str)
end
a, b = io.read():match("(%d+) %-?(%d+)")
a = lltonumber(a)
b = lltonumber(b)
print(a < b and "Yes" or "No")