結果

問題 No.651 E869120 and Driving
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-09-08 10:25:25
言語 Perl
(5.38.2)
結果
AC  
実行時間 23 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 7,936 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-06-07 10:43:25
合計ジャッジ時間 1,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
7,808 KB
testcase_01 AC 19 ms
7,936 KB
testcase_02 AC 20 ms
7,808 KB
testcase_03 AC 23 ms
7,936 KB
testcase_04 AC 20 ms
7,936 KB
testcase_05 AC 20 ms
7,936 KB
testcase_06 AC 20 ms
7,936 KB
testcase_07 AC 20 ms
7,808 KB
testcase_08 AC 21 ms
7,808 KB
testcase_09 AC 20 ms
7,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;
use feature qw/state/;
use Time::Piece;

sub output {
    my $line = join " ", @_;
    print "$line\n";
}

sub input {
    state @que;
    if (@que == 0) {
        chomp(my $line = <>);
        push @que, split / /, $line;
    }
    return shift @que;
}

my $a = input;
my $t = Time::Piece->strptime("10:00", "%H:%M") + ($a / 100 * 60 * 60);
output $t->strftime("%H:%M");
0