結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー abap34abap34
提出日時 2024-02-23 21:43:43
言語 Julia
(1.10.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 212 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 491,364 KB
最終ジャッジ日時 2024-10-02 02:48:15
合計ジャッジ時間 31,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,711 ms
339,912 KB
testcase_02 AC 1,710 ms
339,660 KB
testcase_03 AC 1,723 ms
339,540 KB
testcase_04 AC 1,712 ms
339,692 KB
testcase_05 AC 1,744 ms
334,828 KB
testcase_06 AC 1,752 ms
334,580 KB
testcase_07 AC 440 ms
271,932 KB
testcase_08 AC 446 ms
272,572 KB
testcase_09 AC 394 ms
253,988 KB
testcase_10 AC 389 ms
253,924 KB
testcase_11 AC 377 ms
250,556 KB
testcase_12 AC 374 ms
250,812 KB
testcase_13 AC 405 ms
252,348 KB
testcase_14 AC 398 ms
253,520 KB
testcase_15 AC 379 ms
252,984 KB
testcase_16 AC 378 ms
252,736 KB
testcase_17 AC 378 ms
251,920 KB
testcase_18 AC 377 ms
253,116 KB
testcase_19 AC 389 ms
253,244 KB
testcase_20 AC 394 ms
252,368 KB
testcase_21 AC 398 ms
253,352 KB
testcase_22 AC 378 ms
252,584 KB
testcase_23 AC 392 ms
252,828 KB
testcase_24 AC 387 ms
252,836 KB
testcase_25 AC 406 ms
252,716 KB
testcase_26 AC 386 ms
252,400 KB
testcase_27 AC 383 ms
252,560 KB
testcase_28 AC 386 ms
252,580 KB
testcase_29 AC 385 ms
252,568 KB
testcase_30 AC 398 ms
252,184 KB
testcase_31 AC 398 ms
252,428 KB
testcase_32 AC 389 ms
252,308 KB
testcase_33 AC 395 ms
252,184 KB
testcase_34 AC 1,735 ms
491,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function solve(N, M)
    return sum(1:N) % M
end


function main()
    T = parse(Int, readline())
    for _ in 1:T
        N, M = parse.(BigInt, split(readline()))
        println(solve(N, M))
    end
end

main()
0