結果
問題 | No.69 文字を自由に並び替え |
ユーザー | nobigomu |
提出日時 | 2018-04-20 00:31:28 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 27 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 13:58:10 |
合計ジャッジ時間 | 929 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
local ffi = require 'ffi' local C = ffi.C ffi.cdef [[ void qsort(void *, size_t, size_t, int (*)(const void *, const void *)); ]] print((function (f, a, b) return f(a) == f(b) and "YES" or "NO" end)(function (s) local t = ffi.new("char [?]", #s, s) C.qsort(t, #s, 1, ffi.cast("int (*)(const char *, const char *)", function (a,b) return a[0]-b[0] end)) return ffi.string(t) end, io.stdin:read("*l"), io.stdin:read("*l")))