結果

問題 No.687 E869120 and Constructing Array 1
ユーザー papinianuspapinianus
提出日時 2018-05-25 14:05:20
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 84 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 11,976 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2023-09-11 03:25:29
合計ジャッジ時間 1,812 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
12,184 KB
testcase_01 AC 7 ms
12,180 KB
testcase_02 AC 8 ms
12,212 KB
testcase_03 AC 7 ms
12,152 KB
testcase_04 AC 7 ms
12,184 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 7 ms
12,196 KB
testcase_08 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
declare(strict_types=1);
$N = trim(fgets(STDIN));
echo "1 ".($N - 1).PHP_EOL;
0