結果

問題 No.64 XORフィボナッチ数列
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-18 18:03:34
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 634 bytes
コンパイル時間 3,452 ms
コンパイル使用メモリ 31,764 KB
実行使用メモリ 39,472 KB
最終ジャッジ日時 2024-07-06 05:27:42
合計ジャッジ時間 8,680 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

<?php
list($zero, $one, $n) = explode(" ",trim(fgets(STDIN)));
$gmp_zero = gmp_init($zero);
$gmp_one = gmp_init($one);
$gmp_n = gmp_init($n);
$gmp_index = gmp_init(2);
if ( gmp_cmp($gmp_n, gmp_init(0)) == 0 ) {
	$gmp_output = $gmp_zero;
}
else if ( gmp_cmp($gmp_n, gmp_init(1)) == 0 ) {
	$gmp_output = $gmp_one;
}
else if ( gmp_cmp($gmp_n, gmp_init(2)) >= 0 ) {
	$gmp_output = gmp_xor($gmp_zero, $gmp_one);
}
while ( gmp_cmp($gmp_n, $gmp_index) > 0 ) {
	$gmp_zero = $gmp_one;
	$gmp_one = $gmp_output;
	$gmp_output = gmp_xor($gmp_zero, $gmp_one);
	$gmp_index = gmp_add($gmp_index, gmp_init(1));
}
echo gmp_strval($gmp_output).PHP_EOL;
0