結果

問題 No.2795 Perfect Number
ユーザー abap34abap34
提出日時 2024-06-28 22:23:38
言語 Julia
(1.10.2)
結果
AC  
実行時間 1,394 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 460,492 KB
最終ジャッジ日時 2024-06-28 22:23:58
合計ジャッジ時間 6,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,394 ms
244,348 KB
testcase_01 AC 266 ms
247,196 KB
testcase_02 AC 265 ms
242,896 KB
testcase_03 AC 267 ms
242,808 KB
testcase_04 AC 277 ms
243,152 KB
testcase_05 AC 293 ms
243,656 KB
testcase_06 AC 296 ms
247,036 KB
testcase_07 AC 295 ms
241,920 KB
testcase_08 AC 275 ms
242,932 KB
testcase_09 AC 316 ms
245,620 KB
testcase_10 AC 267 ms
242,844 KB
testcase_11 AC 295 ms
242,196 KB
testcase_12 AC 267 ms
243,376 KB
testcase_13 AC 263 ms
243,160 KB
testcase_14 AC 265 ms
247,304 KB
testcase_15 AC 273 ms
247,172 KB
testcase_16 AC 315 ms
243,656 KB
testcase_17 AC 271 ms
244,968 KB
testcase_18 AC 263 ms
241,932 KB
testcase_19 AC 264 ms
242,768 KB
testcase_20 AC 280 ms
247,204 KB
testcase_21 AC 266 ms
242,304 KB
testcase_22 AC 267 ms
242,704 KB
testcase_23 AC 294 ms
242,432 KB
testcase_24 AC 308 ms
243,280 KB
testcase_25 AC 292 ms
247,320 KB
testcase_26 AC 313 ms
243,792 KB
testcase_27 AC 269 ms
243,904 KB
testcase_28 AC 272 ms
243,680 KB
testcase_29 AC 294 ms
242,132 KB
testcase_30 AC 287 ms
242,512 KB
testcase_31 AC 292 ms
242,516 KB
testcase_32 AC 327 ms
242,524 KB
testcase_33 AC 270 ms
242,280 KB
testcase_34 AC 286 ms
242,900 KB
testcase_35 AC 265 ms
243,108 KB
testcase_36 AC 287 ms
245,912 KB
testcase_37 AC 310 ms
460,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main()
    l = [6, 28, 496, 8128, 33550336, 8589869056, 137438691328,
        2305843008139952128,
        big"2658455991569831744654692615953842176",
        big"191561942608236107294793378084303638130997321548169216"]

    N = parse(BigInt, readline())

    yesno(b::Bool) = (b ? "Yes" : "No") |> println

    yesno(N in l)
end

main()
0