時間を設定する


27

矢印キーで制御できる次の24時間時計を想像してください。

╔══╗ ┌──┐
║00║:│00│
╚══╝ └──┘
 HH   mm

上矢印を2回(↑↑)押すと、現在フォーカスされている時間入力が増加します。

╔══╗ ┌──┐
║02║:│00│
╚══╝ └──┘
 HH   mm

右矢印()を押すと、他の入力がフォーカスされます。

┌──┐ ╔══╗
│02│:║00║
└──┘ ╚══╝
 HH   mm

下矢印を3回(↓↓↓)押すと、この入力が減少します。

┌──┐ ╔══╗
│02│:║57║
└──┘ ╚══╝
 HH   mm

簡単に言えば:

  • 上矢印()は、現在アクティブな入力を増やします。
  • 下矢印()は、アクティブな入力を減らします。
  • 右矢印()は、フォーカスを右入力に移動します。
  • 左矢印()は、左入力にフォーカスを移動します。
  • 上下の動きは、時間の入力に対して期待どおりにループします。
  • 左右の動きはループしません。

チャレンジ

クロックは00:00、時間入力がアクティブな状態で始まります(最初の回路図を参照)。入力コマンドのリストを指定して、結果の時間をHH:mm形式で出力します。
入力は文字列またはリスト(または同等の言語)のいずれかです。異なる入力方向は以下のオプションのいずれかです。

  • ↑↓←→
  • udlr
  • ^v<>
  • プログラムにGUIがある場合、実際の矢印キーを押す

標準の抜け穴が適用されます。

テストケース

↑↑→↓↓↓ = 02:57
↓→↑←↑→↓ = 00:00
↓→→↓ = 23:59
←←←←→↑ = 00:01
↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓→↓ = 23:59

1
@JonathanFrech指定されたオプションの1つで、4つの一意の値(たとえば0123)を選択すると、特定の言語ではチャレンジがはるかに簡単になり、他の言語ではメリットがなくなります。
-Nit

1
@LuisfelipeDejesusMunozはい、それは実際に入力規則の下で書き出されています。
-Nit

3
秒が含まれている場合、これはより困難だったと思います。これには、現在焦点を当てているより多くのロジックがあります
ジョーキング

3
Konamiコードを処理するための特別なルールがありません。
コアダンプ

1
@coredumpはそれを考慮しましたが、おそらくほとんどの言語の答えの中核よりも多くのスペースを必要とします。
NIT

回答:


39

中国語(簡体字)のGoogle Chrome 67のHTML、39バイト

<input type=time value=00:00 autofocus>

スクリーンショット

Chromeは異なる言語で異なるUIコンポーネントを表示します。簡単な時間入力でも、英語(米国)を使用している場合はAM / PMが表示されます。Chromeの言語を変更してこれをテストする場合。元に戻す方法をまとめないでください。


2
おい!! ハハ私はカントーは有効ではないと思う
ルイス・フェリペ・デ・イエス・ムニョス

2
右を2回AM/PM
ジョーキング

1
@JoKingロケール/設定に依存すると思いますか?
-Nit

1
@JoKingこれはロケールに依存します。Chromeの言語を中国語簡体字に変更してみてください。(元に戻す方法をまとめないでください。)
tsh

1
firefox 61.0.1で動作します
フランシスコハーン

12

C(gcc)117107バイト

t,i,m[8];e(char*_){for(*m=i=2[m]=0;t=*_++;t<63?i=t%4:(i[m]+=t&8?1:'w'));printf("%02d:%02d",*m%24,2[m]%60);}

オンラインでお試しください!


4
素敵な変数の命名。
-Nit

C(GCC)、107バイト< -言語-すべて:!LANG-C - > t,i,m[8];e(char*_){for(*m=i=2[m]=0;t=*_++;t<63?i=t%4:(i[m]+=t&8?1:119));printf("%02d:%02d",*m%24,2[m]%60);} オンラインをお試しください!
l4m2

6

スタックス36 35 33 32 バイト

áXò↑─↨√▓|êóÇiU&≡Q#┤Æ⌡⌠╟C▐╜√⌡∟▄╩╠

実行してデバッグする

を使用しlrudます。

説明:

'l/{'r/Bs$2lmM{${:14-m|+i36*24+%2|zm':* Full program,
'l/                                     Split the string on "l"
   {        m                           Map over the resulting array
    'r/                                   Split at "r"
       B                                  Uncons left, first on TOS (top of stack)
        s                                 Swap to get tail to top
         $                                Flatten; this removes multiple 'r's
          2l                              Listify two items, BOS (bottom of stack) is first element
             M                          Transpose: get [hour commands, minute commands]
              {                    m    Map:
               $                          Flatten
                {    m                    Map over single commands:
                 :1                         Number of set bits: 5 for 'u', 3 for 'd'
                   4-                       Subtract 4: u -> 1, d -> -1
                      |+                  Sum
                        i                 Iteration index: hours -> 0, minutes -> 1
                         36*24+           Multiply by 36, add 24: 0 -> 24, 1 -> 60
                               %          Modulo, this does -5 % 60 = 55
                                2|z       Stringify, left-padding with "0" to length 2
                                    ':* Join on ":"
                                        Implicit output



5

C#(.NET Core)149132バイト

s=>{var p=0;int[]h={0,0};foreach(var c in s)h[p=c<63?c/2%2:p]+=c>62?c>95?-1:1:0;return$"{(h[0]%24+24)%24:D2}:{(h[1]%60+60)%60:D2}";}

オンラインでお試しください!

を使用し^v<>ます。

これにより、C#のモジュロ演算子が期待どおりに機能しないことがわかりました。C#では-1 % 60 = -1、最後に奇妙な操作を行う必要があるためです。


(h [1]%60 + 60)%60を(h [1] +60)%60に置き換えることはできませんか?
IanF1

2
@ IanF1いいえ、できません。ユーザーが下ボタンを100回押すとどうなりますか?それとも1000回?
チャーリー

明確にしてくれてありがとう:)この方法がモジュロをオンザフライで適用するよりも短いことは驚きです(-1の代わりに59を使用)。
IanF1

5

Lua(love2dフレームワーク)、311 308バイト

l,b,d,t,f,a=love,{24,60},{1,-1},{0,0},1,{"left","right","up","down"}function c(n,i)t[f]=(n+d[i])%b[f]end function l.draw()h,m=t[1],t[2]l.graphics.print((h<10 and 0 ..h or h)..":"..(m<10 and 0 ..m or m),0,0)end function l.keypressed(k)for i,n in pairs(a)do f=k==n and(i>2 and(c(t[f],i-2)or f)or i)or f end end

乱暴なバージョン:

--initialize all needed values
l,b,d,t,f,a=love,{24,60},{1,-1},{0,0},1,{"left","right","up","down"}

--increase the numbers depending on the focus and up or down
function c(n,i)
  t[f]=(n+d[i])%b[f]
end 

--draw the time to the screen
function l.draw()
  h,m=t[1],t[2]
  l.graphics.print((h<10 and 0 ..h or h)..":"..(m<10 and 0 ..m or m),0,0)
end

--get the keys and check if it is an arrow key
function l.keypressed(k)
  for i,n in pairs(a)do
    f=k==n and(i>2 and(c(t[f],i-2)or f)or i)or f 
  end 
end

おそらく、すべてのifが3項ステートメント(..and ..or)と交換されるため、まだ100%読みやすいとは言えません。

愛を込めてmain.luaで起動した場合、ウィンドウがポップアップし、矢印キーを押して数字を変更できます


あなたも読みやすくするために拡張されたバージョンを投稿できる
AAAAAはモニカ回復言う

確かに、問題なく拡張バージョンを追加しました:)
リセア

4

MATL57 56 55バイト

1Oi9\"@5<?y@3-ZS*+}wx7@-X^w]]wx&Zjh24 60h\'%02d:%02d'YD

オンラインでお試しください!

複素数を使用して時間と分を表します。実数部は時間で、虚数部は分です。

コメント付き:

1     % Push 1 on the stack
      % represents which timer box we're in, starts at hour box
      % imaginary number j would represent minutes box
O     % Push initial hour and minutes 0+0j
i9\   % Fetch input, mod each character's ASCII value by 9.
      % Gives 4 1 8 6 for ^ v > < respectively
"     % iterate through (modded) input
  @5<?     % Push current input, see if it's < 5 
           % if so, it's an up or down time change
    y        % so copy out the box indicator (1 or j)
    @3-      % Subtract 3 from the current input
    ZS       % Take the result's sign (-1 for v, 1 for ^)
    *        % Multiply indicator with that
    +        % Add the result to the time value
  }        % else, it's a right or left arrow
    wx       % so bring out the box indicator and delete it
    7@-      % Subtract current input from 7. 1 for < and -1 for >
    X^       % Take the square root of that. 1 for < and j for >
    w        % switch stack to bring time value on top again
  ]       % end if
]     % end loop
wx    % bring box indicator out, delete it
&Zj   % split the complex time value to real and imaginary
h     % then concatenate them into an array
24 60h\ % mod hour and minute values by 24 and 60 respectively
'%02d:%02d'YD % sprintf the time array with 0-padding

4

PHP145の 134 133バイト

(より多くのゴ​​ルフで-11バイト)

Davіdのループメソッドを使用して-1バイト)

<?for($h=$m=0,$a=h;$c=$argv[++$i];)$c<l?$$a--:($c>r?$$a++:$a=$c<r?h:m);$h%=24;$m%=60;printf('%02d:%02d',$h<0?$h+24:$h,$m<0?$m+60:$m);

実行するには:

php -n -d error_reporting=0 <filename> <command_1> <command_2> ... <command_n>

例:

php -n -d error_reporting=0 time_setter.php u u r d d d l d

または、オンラインでお試しください!

ノート:

  • いくつかのバイトを節約するために、文字列ラッパーとして単一/二重引用符なしの文字列を使用しました。したがって、このerror_reporting=0オプションは警告を出力しないために使用されます。
  • 入力コマンド: u d l r

128バイト、-6:オンラインで試してみてください!(素敵な解決策、ところで:)
ダビッド

@Davіd:ありがとう。ただし、アップデートには2つの問題があります。まず、$ hが設定されていないため、起動時に値を減らすことができません。オンラインで試してください!
ナイト2

@David:そして、2番目の問題は、時間/分を24/60回以上上下に切り替えると発生します。オンラインで試してください!
ナイト2

@Davіd:しかし、ループメソッドのおかげで、もう1バイト削減できました。オンラインで試してみてください。
ナイト2

ああ、申し分なく、すみません、それは完全に動作しませんでした:)
ダビッド

4

JavaScript、104 103バイト

を使用して、入力を文字の配列として受け取ります<>^v

a=>(a.map(z=>z<"^"?a=z<">":a?x+=z<"v"||23:y+=z<"v"||59,x=y=0),g=n=>`0${n}`.slice(-2))(x%24)+`:`+g(y%60)

オンラインで試す


3

Haskell、236バイト

f=u 0 0
k _ _ _ _ _ h m[]=z h++':':z m
k a b c d e h m(q:s)=case q of{'^'->e(a h)(b m)s;'v'->e(c h)(d m)s;'>'->v h m s;'<'->u h m s}
u=k(o(+)24)id(o(-)24)id u
v=k id(o(+)60)id(o(-)60)v
o f m x=mod(f x 1)m
z n|n<10='0':show n
z n=show n

fはメイン関数であり、タイプはString -> String次のとおりです。

*Main> f "^^>vvv"
"02:57"
*Main> f "v>^<^>v"
"00:00"
*Main> f "v>>v"
"23:59"
*Main> f "<<<<>^"
"00:01"
*Main> f "vvvvvvvvvvvvvvvvvvvvvvvvv>v"
"23:59"

本質的にuおよびvは相互に再帰的なtypeの関数ですInteger -> Integer -> String -> String。これらは、セットの時間、分、および文字のリストを受け取り、時間{v,^,<,>}文字列を返します。uアワーダイヤルが強調表示されているように機能しu、リストの先頭がにある場合{v,^}、およびリストの先頭がにある場合に再帰的に呼び出します。似ていますが、分ダイヤル用です。v{<,>}v

それ以外はすべてキャラクターを保存するだけです。


3

Lua、132バイト

loadstring's,t,m=1,{0,0},{24,60}for c in(...):gmatch"."do t[s]=(t[s]+(("d u"):find(c)or 2)-2)%m[s]s=("lr"):find(c)or s end return t'

オンラインでお試しください!


説明

これは匿名関数です(使用方法はリンクに示されています)。

s=1 -- s will control the selection (1 is hour and 2 min)
t={0,0} -- is the time itself
m={24,60} -- is the maximum for each 'box' (hour or min)
-- I've actually used Lua's multiple variable assignment: s,t,m=1,{0,0},{24,60}

for c in (...):gmatch(".") do -- go through each character of the input
  t[s] = (t[s] + (("d u"):find(c) or 2)-2) % m[s] -- set the current 'box' as
          t[s] +   -- itself plus ...
                  ("d u"):find(c) or 2   -- it's index on the string "d u" (that means it's going to be 1 or 3)
                                         -- or 2 if it wasn't found (if the current character doesn't sum or subtract from the box)
                                       -2   -- this adjusts the result 1, 2 or 3 to being -1, 0 or 1
                                            -- making the inputs 'd' and 'u' as -1 and +1 respectively, and an input different from both as 0
         (                               ) % m[s]   -- modulo of the maximum of the selected 'box'

  s=("lr"):find(c) or s
    ("lr"):find(c)   -- if the current input character is l or r, then set 's' (the 'box' selection) to being 1 or 2.
                   or s   -- else let it as is
end
return t -- returns 't', a table with hour and minutes respectively

出力はHH:mm、表ではなく形式である必要があります
ジョーキング


2

ゼリー、36 バイト

私は信じているO%5;4ṣ3œṡ€4Z%3’§§%"“ð<‘DŻ€ṫ€-j”:32のために働く必要がありますが、œṡ 現在はバグがあるようです

O%5;4ṣ3i€4$œṖ"$Z%3’§§%"“ð<‘DŻ€ṫ€-j”:

結果をSTDOUTに出力する完全なプログラム(モナドリンクとして、実際には整数(1桁ではあるが)と文字(the :)の混合リストを返します。

udlr入力にオプションを使用します。

オンラインでお試しください!または、テストスイートを参照してください。

どうやって?

O%5;4ṣ3i€4$œṖ"$Z%3’§§%"“ð<‘DŻ€ṫ€-j”: - Link: list of characters (in 'udlr')
O                                    - to ordinals
 %5                                  - modulo five  ...maps u:2, d:0, l:3, r:4
   ;4                                - concatenate a 4 (to always end up with both hrs & mins - even when no r is ever pressed)
     ṣ3                              - split at threes (the l presses)
       i€4$œṖ"$                      - a replacement for œṡ€4 (split each at first occurrence of)...
              $                      - | last two links as a monad:
          $                          - |   last two links as a monad:
         4                           - |     literal four
       i€                            - |     for €ach get first index of (4) else yield 0
             "                       - |   zip with:
           œṖ                        - |     partition at indices
               Z                     - transpose (to get a list of two lists of lists)
                %3                   - modulo by three. To replace any 4(r) with 1
                                     -  ...while keeping any 0(d) as 0, or 2(u) as 2
                  ’                  - decrement. All r are now 0, d are -1 and u are 1
                   §                 - sum each
                    §                - sum each. Now we have the total increase value as
                                     -    ...integers for each of hrs and mins
                       “ð<‘          - code-page indices list = [24,60]
                      "              - zip with:
                     %               -   modulo
                           D         - to decimal lists
                            Ż€       - prepend each with a zero (to cater for values less than ten)
                              ṫ€-    - tail each from index -1. Keeps rightmost two digits of each only)
                                  ”: - literal character ':'
                                 j   - join
                                     - as full program implicit print (smashes the digits and characters together)


2

QBasic、229バイト

入力をキーストロークとして受け取り、コンソールに出力するスクリプト。

注:ターミナル"は構文の強調表示専用に含まれており、バイトカウントには寄与しません

z$=CHR$(0)
DO
x=0
y=0
SELECT CASE INKEY$
CASE z$+"K"
r=0
CASE z$+"M"
r=1
CASE z$+"H"
x=1
y=1
CASE z$+"P"
x=23
y=59
END SELECT
IF r THEN m=(m+y)MOD 60ELSE h=(h+x)MOD 24
CLS
?RIGHT$("00000"+LTRIM$(STR$(h*1000+m)),5)
LOCATE 1,3
?":"
LOOP

コメント済み

z$=CHR$(0)                                      ''  Set var to null char
DO                                              ''
    x=0                                         ''  Set Hours Shift to 0 
    y=0                                         ''  Set Minutes Shift to 0 
    SELECT CASE INKEY$                          ''  Take keystroke input
        CASE z$+"K"                             ''  If is Left Arrow
            r=0                                 ''    Bool to modify right (minutes) 
        CASE z$+"M"                             ''  If is Right Arrow
            r=1                                 ''    Bool to modify left (hours)
        CASE z$+"H"                             ''  If is Up Arrow
            x=1                                 ''    Set Hours Shift to 1 
            y=1                                 ''    Set Minutes Shift to 1
        CASE z$+"P"                             ''  If is Down Arrow
            x=23                                ''    Set Hours Shift to 23 
            y=59                                ''    Set Minutes Shift to 23 
    END SELECT                                  ''
    IF r THEN m=(m+y)MOD 60ELSE h=(h+x)MOD 24   ''  Shift Minutes If `r=1` Else Shift Hours
    CLS                                         ''  Clear Screen
    ?RIGHT$("00000"+LTRIM$(STR$(h*1000+m)),5)   ''  Use math to concat Hours and Minutes 
                                                ''  then Convert to String and prepend 0s 
                                                ''  to a length of 5
    LOCATE 1,3                                  ''  Cursor to the the third digit
    ?":"                                        ''  Overwrite that digit with a `:`
LOOP                                            ''  Loop

1
そうじゃない(m+y)
ニール

注では、すべきでありませんか?
ジョナサンフレッチ

@JonathanFrech-そうだね。チェックで私の文法を維持してくれてありがとう
テイラー・スコット

申し訳ありませんが、mなんらかの理由で数分かかったと思います...コメント版の方が読みやすいと思います。
ニール

2

Powershell、109 103バイト

-6バイト、AdmBorkBorkに感謝

$t=0,0
$args|%{$t[+$i]+=. @{l={$i=0};r={$i=1};u={1};d={119}}.$_}
"{0:00}:{1:00}"-f($t[0]%24),($t[1]%60)

テストスクリプト:

$f = {

$t=0,0
$args|%{$t[+$i]+=. @{l={$i=0};r={$i=1};u={1};d={119}}.$_}
"{0:00}:{1:00}"-f($t[0]%24),($t[1]%60)

}

@(
    ,('02:57',('u','u','r','d','d','d'))
    ,('00:00',('d','r','u','l','u','r','d'))
    ,('23:59',('d','r','r','d'))
    ,('00:01',('l','l','l','l','r','u'))
    ,('23:59',('d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','d','r','d'))
) | % {
    $e, $c = $_
    $r = &$f @c
    "$($r-eq$e): $r"
}

出力:

True: 02:57
True: 00:00
True: 23:59
True: 00:01
True: 23:59

説明

基本的な考え方は[hashtable]keys制御コマンドでvaluesありスクリプトブロックであるを使用することです。コードは、引数から各コマンドのスクリプトブロックを実行します。


1
$i=0配列のインデックスをキャストして、$t[+$i]いくつかのバイトを節約することで、取り除くことができます。オンラインでお試しください!
AdmBorkBork


1

perl -F // -E、72バイト

$x=H;/u/?$$x++:/d/?$$x--:($x=/l/?H:M)for@F;printf"%02d:%02d",$H%24,$M%60

1

Python、120バイト

o,i=[0,0],0
for s in list(input()):i=(i+(s=='r')-(s=='l')>=1);o[i]+=(s=='u')-(s=='d')
print'%02d:%02d'%(o[0]%24,o[1]%60)

これは、変数に入力を取り込むスニペットのように見えます。一般的なルールとして、完全なプログラム(プログラムの引数または標準入力から入力を取得)または関数(関数パラメーターから入力を取得)のいずれかを提示するための回答が必要です。
OOBalance

1
また、壁にこの実験では、たとえば、入力のないときldrru原因はi範囲(0,1)のままにし、o[i]その後にアクセスされますか?
OOBalance

@OOBalanceおっと、機能やが必要なことを思い出させてくれてありがとうunput()。要件から、LアクションとRアクションはループしない(つまりno LL)と考えられました
aaaaaはモニカを

@aaaaaaループしlllないという意味は、とは異なりrます。有効な入力を持っているllrr、それがテストケースでもあります。たとえば、3番目の入力を参照してください。
Nit

現在、この回答の3番目のテストケースには、出力する代わりにIndexErrorがあり23:59ます。オンラインでお試しください!
0


1

R、368 355バイト

f=function(){C=as.character
i=ifelse
p=paste0
r=1:10
h=C(0:23);m=C(0:59)
h[r]=p(0,h[r])
m[r]=p(0,m[r])
x=y=z=1
while(T){print(p(h[x],":",m[y]))
v=1
n="[UDLRS]"
while(!grepl(n,v))v=toupper(readline(n))
if(v=="L")z=1 else if(v=="R")z=0
if(v=="S")T=F
if(v=="U")if(z)x=i(x==24,1,x+1)else y=i(y==60,1,y+1)
if(v=="D")if(z)x=i(x==1,24,x-1)else y=i(y==1,60,y-1)}}

間違いなく最良のアプローチではありませんが、機能します。

機能:機能を実行し、各文字を入力して(拡大/縮小)折りたたむか、左右に移動し、「s」を入力すると「ゲーム」が終了します。キャッチは、一度に1通のみの文字を受け入れることです。

-13バイト一部の値を1行に統合し、breakを使用する代わりにTをFに上書きし、削除するスペースをいくつか見つけ、代わりに変数に格納された文字列

f=function(){C=as.character                             # Abbreviate functions
i=ifelse
p=paste0
r=1:10                                                  # Initialize and format values
h=C(0:23);m=C(0:59)
h[r]=p(0,h[r])
m[r]=p(0,m[r])
x=y=z=1
while(T){print(p(h[x],":",m[y]))                        # Begin while loop and print time
v=1                                                     # Initial value reset each iteration to retrieve a new direction
n="[UDLRS]"                                             # Used for verification and request
while(!grepl(n,v))v=toupper(readline(n))                # Will only accept proper directions or stopping rule
if(v=="L")z=1 else if(v=="R")z=0                        # Evaluate for hour or minute
if(v=="S")T=F                                           # Stopping rule, overwrite True to False
if(v=="U")if(z)x=i(x==24,1,x+1)else y=i(y==60,1,y+1)    # Rules for Up
if(v=="D")if(z)x=i(x==1,24,x-1)else y=i(y==1,60,y-1)}}  # Rules for Down

また、R文字列および/またはベクトルを受け入れる代替形式を編集しており、来週投稿します。


1

SmileBASIC、123バイト

@L
B=BUTTON(2)D=(B==1)-(B==2)S=S+!S*(B>7)-S*(B==4)H=(H+D*!S+24)MOD 24WAIT
M=(M+D*S+60)MOD 60?FORMAT$("%02D:%02D",H,M)GOTO@L

BUTTON() 各ビットがボタンを表す整数を返します

1 = up
2 = down
4 = left
8 = right
...

BUTTON(2) 押されたばかりのボタン(保持されていない)のみを返します

WAITBUTTONフレームごとに1回(1/60秒)しか更新されないため、そうしないと、同じボタンの押下が複数回検出されます。

これは間違いなく短くなります


0

05AB1E38 37 バイト

'l¡ε'r¡}0ζćs˜‚€S„udS1®‚:OŽ9¦2ä%T‰J':ý

用途udlr向きのためだけでなく、使用することができます^v<>(文字が同じバイトカウントのために↑↓←→そのエンコーディングはASCIIに変更する必要があるため、抽選でバイト数を増加させるそれらを使用して、05AB1Eのコードページの一部ではありません)。

オンラインそれを試してみたり、すべてのテストケースを確認してください

説明:

'l¡            '# Split the (implicit) input on "l"
                #  i.e. "lllrurulddd" → ["","","","ruru","ddd"]
   ε   }        # Map each item to:
    'r¡        '#  Split the item on "r"
                #   i.e. ["","","","ruru","ddd"] → [[""],[""],[""],["","u","u"],["ddd"]]
        0ζ      # Zip/transpose; swapping rows/columns, with "0" as filler
                #  i.e. [[""],[""],[""],["","u","u"],["ddd"]]
                #   → [["","","","","ddd"],["0","0","0","u","0"],["0","0","0","u","0"]]
ć               # Head extracted: pop and push the remainder and head-item to the stack
                #  i.e. [["","","","","ddd"],["0","0","0","u","0"],["0","0","0","u","0"]]
                #   → [["0","0","0","u","0"],["0","0","0","u","0"]] and ["","","","","ddd"]
 s              # Swap to get the remainder
  ˜             # Flatten it
                #  i.e. [["0","0","0","u","0"],["0","0","0","u","0"]]
                #   → ["0","0","0","u","0","0","0","0","u","0"]
               # Pair the head and remainder back together
                #  i.e. ["","","","","ddd"] and ["0","0","0","u","0","0","0","0","u","0"]
                #   → [["","","","","ddd"],["0","0","0","u","0","0","0","0","u","0"]]
    S          # Convert each item to a list of characters
                # (implicitly flattens and removes empty strings)
                #  i.e. [["","","","","ddd"],["0","0","0","u","0","0","0","0","u","0"]]
                #   → [["d","d","d"],["0","0","0","u","0","0","0","0","u","0"]]
      udS1®‚:  # Replace all "u" with "1" and all "d" with "-1"
                #  i.e. [["d","d","d"],["0","0","0","u","0","0","0","0","u","0"]]
                #   → [["-1","-1","-1"],["0","0","0","1","0","0","0","0","1","0"]]
              O # Then take the sum of each inner list
                #  i.e. [["-1","-1","-1"],["0","0","0","1","0","0","0","0","1","0"]]
                #   → [-3,2]
Ž9¦             # Push compressed integer 2460
   2ä           # Split into two parts: [24,60]
     %          # Modulo the two lists
                #  i.e. [-3,2] and [24,60] → [21,2]
      T        # Divmod each with 10
                #  i.e. [21,2] → [[2,1],[0,2]]
        J       # Join each inner list together
                #  i.e. [[2,1],[0,2]] → ["21","02"]
         ':ý   '# Join the list with ":" delimiter
                #  i.e. ["21","02"] → "21:02"
                # (and output the result implicitly)

理由を理解するにŽ9¦、この05AB1Eのヒント(大きな整数を圧縮する方法?参照してください2460

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.