結果
問題 | No.64 XORフィボナッチ数列 |
ユーザー |
|
提出日時 | 2020-03-26 13:43:05 |
言語 | Perl (5.40.0) |
結果 |
AC
|
実行時間 | 7 ms / 5,000 ms |
コード長 | 147 bytes |
コンパイル時間 | 280 ms |
コンパイル使用メモリ | 6,692 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-01-02 01:27:10 |
合計ジャッジ時間 | 1,029 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
my ($f0, $f1, $n) = glob<>;my $f2 = int($f0) ^ int($f1);print$f0 if ($n % 3 == 0);print$f1 if ($n % 3 == 1);print$f2 if ($n % 3 == 2);print$/