結果

問題 No.687 E869120 and Constructing Array 1
コンテスト
ユーザー kotatsugame
提出日時 2018-06-14 13:38:43
言語 Perl
(5.42.0)
コンパイル:
perl -cw _filename_
実行:
perl -X _filename_
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 97 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 383 ms
コンパイル使用メモリ 8,100 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-03-20 16:07:53
合計ジャッジ時間 1,403 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #
raw source code

$n=<>;
for(1..10){
    if($n-$_>=1&&$n-$_<=10){
        print"$_ ",$n-$_,$/;
        exit
    }
}
0