結果

問題 No.83 最大マッチング
ユーザー PicklesSuperiorPicklesSuperior
提出日時 2018-10-21 11:54:43
言語 PHP
(8.3.4)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 31,056 KB
実行使用メモリ 31,056 KB
最終ジャッジ日時 2024-11-19 03:19:23
合計ジャッジ時間 1,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
30,624 KB
testcase_01 AC 41 ms
30,740 KB
testcase_02 AC 41 ms
30,888 KB
testcase_03 AC 42 ms
30,816 KB
testcase_04 AC 41 ms
30,804 KB
testcase_05 AC 40 ms
30,920 KB
testcase_06 AC 41 ms
30,732 KB
testcase_07 AC 40 ms
30,872 KB
testcase_08 AC 41 ms
30,684 KB
testcase_09 AC 48 ms
31,056 KB
testcase_10 AC 83 ms
30,780 KB
testcase_11 AC 99 ms
30,908 KB
testcase_12 AC 100 ms
30,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $input = trim(fgets(STDIN));
    $onelen = (int)($input/2);
    $rest = $input%2;
    #print($onelen . " " . $rest . "\n");
    if($rest == 1){
        print(7);
        for($i = 1;$i < $onelen;$i++){
            print(1);
        }
        print("\n");
    }else{
        for($i = 0;$i < $onelen;$i++){
            print(1);
        }
        print("\n");
    }
?>
0