結果

問題 No.552 十分簡単な星1の問題
コンテスト
ユーザー vjudge1
提出日時 2025-11-24 21:18:27
言語 Crystal
(1.14.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 11,919 ms
コンパイル使用メモリ 316,260 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-11-24 21:18:42
合計ジャッジ時間 14,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

require "big"
lib C
    fun getchar_unlocked : Int32
end
def read_word : String
    ans = [] of Char
    f = 1
    c = C.getchar_unlocked()
    while [9, 10, 11, 12, 13, 32].includes?(c)
        c = C.getchar_unlocked()
    end
    while ![-1, 9, 10, 11, 12, 13, 32].includes?(c)
        ans.push('\0' + c)
        c = C.getchar_unlocked()
    end
    return ans.join("")
end
puts(read_word.to_big_i * 10.to_big_i)
0