結果

問題 No.2 素因数ゲーム
ユーザー さとみんさとみん
提出日時 2020-09-27 00:40:02
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 349 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 1,223 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 01:37:01
合計ジャッジ時間 7,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 44 ms
5,376 KB
testcase_07 AC 48 ms
5,376 KB
testcase_08 AC 44 ms
5,376 KB
testcase_09 AC 349 ms
5,376 KB
testcase_10 AC 291 ms
5,376 KB
testcase_11 AC 135 ms
5,376 KB
testcase_12 AC 136 ms
5,376 KB
testcase_13 AC 282 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 81 ms
5,376 KB
testcase_16 AC 199 ms
5,376 KB
testcase_17 AC 301 ms
5,376 KB
testcase_18 AC 319 ms
5,376 KB
testcase_19 AC 187 ms
5,376 KB
testcase_20 AC 248 ms
5,376 KB
testcase_21 AC 340 ms
5,376 KB
testcase_22 AC 305 ms
5,376 KB
testcase_23 AC 144 ms
5,376 KB
testcase_24 AC 319 ms
5,376 KB
testcase_25 AC 237 ms
5,376 KB
testcase_26 AC 165 ms
5,376 KB
testcase_27 AC 87 ms
5,376 KB
testcase_28 AC 200 ms
5,376 KB
testcase_29 AC 154 ms
5,376 KB
testcase_30 AC 145 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
    implicit none
    
    integer :: n
    
    integer :: index = 0
    integer :: xor   = 0
    
    integer :: i
    
    read *, n
    
    do i = 2, n
        index = 0
        do while (mod(n, i) == 0)
            n = n / i
            index = index + 1
        end do
        
        xor = ieor(xor, index)
    end do
    
    if (xor == 0) then
        print '(A)', "Bob"
    else
        print '(A)', "Alice"
    end if
end program main
0