結果

問題 No.666 1000000007で割るだけ
コンテスト
ユーザー vjudge1
提出日時 2025-11-20 17:11:59
言語 Crystal
(1.14.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 11,881 ms
コンパイル使用メモリ 307,352 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-11-20 17:13:06
合計ジャッジ時間 12,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

lib C
    fun getchar_unlocked : Int32
end
def read_int : Int64
    ans = 0
    f = 1
    c = C.getchar_unlocked()
    while [9, 10, 11, 12, 13, 32].includes?(c)
        c = C.getchar_unlocked()
    end
    if c == 45
        f = -1
        c = C.getchar_unlocked()
    end
    while (48 .. 57).includes?(c)
        ans = (ans << 1) + (ans << 3) + (c ^ 48)
        c = C.getchar_unlocked()
    end
    return (ans * f).to_i64
end
puts(read_int * read_int % 1000000007_i64)
0