結果

問題 No.64 XORフィボナッチ数列
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-18 18:17:10
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 32,784 KB
最終ジャッジ日時 2024-07-06 05:28:22
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
32,532 KB
testcase_01 AC 41 ms
32,532 KB
testcase_02 AC 40 ms
32,532 KB
testcase_03 AC 40 ms
32,784 KB
testcase_04 AC 40 ms
32,596 KB
testcase_05 AC 40 ms
32,532 KB
testcase_06 AC 37 ms
32,404 KB
testcase_07 AC 38 ms
32,404 KB
testcase_08 AC 39 ms
32,528 KB
testcase_09 AC 39 ms
32,660 KB
testcase_10 AC 40 ms
32,656 KB
testcase_11 AC 39 ms
32,528 KB
testcase_12 AC 40 ms
32,600 KB
testcase_13 AC 40 ms
32,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($zero, $one, $n) = explode(" ",trim(fgets(STDIN)));
$gmp_output = array();
$gmp_output[0] = gmp_init($zero);
$gmp_output[1] = gmp_init($one);
$gmp_output[2] = gmp_xor($gmp_output[0], $gmp_output[1]);
$gmp_n = gmp_init($n);
echo gmp_strval($gmp_output[gmp_intval(gmp_div_r($gmp_n,gmp_init(3)))]).PHP_EOL;
0